私は、現在の日付を変更したいか、私はこのような現在の日付で変数を入れたい:どのように私は現在の日付を変更できますか?
$companyDates = $company_dates['dates']; //this variable come from DataBase
$databaseDate=DateTime::createFromFormat("Y-m-d", $companyDates);
$day=$databaseDate->format('d'); // this is how i take just days from date format(y-m-d)
$dt = new DateTime();
$today = $dt->format('Y-m-d');
$oldDate=$dt->format('Y-m-$day'); // here i want days from database into current day month and year.
、その後、私はこのような別の日を見つけたい:
$date1=date_create($today);
$date2=date_create($oldDate);
$diff=date_diff($date1,$date2);
が可能。この場合、またはこのです私のやり方は正しい?
は私の友人、その作業完璧@Suchit – AboYousef16
@ AboYousef16ご歓迎ありがとうございます。 –