1 2 3 4 5 6 7 8 9 10 11 |
$start_date = new DateTime('2007-09-01 04:10:58'); $since_start = $start_date->diff(new DateTime('2012-09-11 10:25:00')); echo $since_start->days.' days total<br>'; echo $since_start->y.' years<br>'; echo $since_start->m.' months<br>'; echo $since_start->d.' days<br>'; echo $since_start->h.' hours<br>'; echo $since_start->i.' minutes<br>'; echo $since_start->s.' seconds<br>'; |
![Firefox - Codehaven](https://www.codehaven.co.uk/wp-content/uploads/2018/12/Mozilla_Firefox_logo_2013-1.png)