Write a PHP script to get time difference in days and years, months, days, hours, minutes, seconds between two dates.
<?php $date1 = new DateTime('2012-06-01 02:12:51'); $date2 = $date1->diff(new DateTime('2014-05-12 11:10:00')); echo $date2->days.'Total days'."\n"; echo $date2->y.' years'."\n"; echo $date2->m.' months'."\n"; echo $date2->d.' days'."\n"; echo $date2->h.' hours'."\n"; echo $date2->i.' minutes'."\n"; echo $date2->s.' seconds'."\n"; ?>
Sample Output:
710Total days 1 years 11 months 10 days 8 hours 57 minutes 9 seconds
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer