How to count of months between two dates in PHP

1 Answer

0 votes
$date1 = new DateTime("2023-07-24");
$date2 = new DateTime("2023-12-12");

$diff = $date1->diff($date2);

$months = ($diff->y * 12) + $diff->m;

echo $months;




/*
run:

4

*/

 



answered Dec 2, 2023 by avibootz

Related questions

...