Difference between two dates.

PHOTO EMBED

Tue Feb 22 2022 00:27:02 GMT+0000 (Coordinated Universal Time)

Saved by @patdevwork

$today = date_create(date("h:i:s A"));// create text of todays date
$new_year = date_create('2023-01-01 00:00');
$difference = date_diff($today , $new_year); // this is an array
content_copyCOPY

https://www.php.net/manual/en/function.date-diff.php