How to calculate minute difference between two date-times in PHP?
|
Subtract the past-most one from the future-most one and divide by 60. Times are done in unix format so they're just a big number showing the number of seconds from January 1 1970 00:00:00 GMT |
|||
|
|
|
Here is the answer:
|
|||||
|
|
|
The answers above are for older versions of PHP. Use the DateTime class to do any date calculations now that PHP 5.3 is the norm. Eg.
$since_start is a DateInterval object. Note that the days property is available (because we used the diff method of the DateTime class to generate the DateInterval object). The above code will output: 1837 days total To get the total number of minutes:
This will output: 2645654 minutes Which is the actual number of minutes that has passed between the two dates. The DateTime class will take daylight saving (depending on timezone) into account where the "old way" won't. Read the manual about Date and Time http://www.php.net/manual/en/book.datetime.php |
|||||
|
|
||||
protected by Mat Aug 6 '11 at 10:02
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.