Jump to content

Calculating the difference between two dates


exhaler

Recommended Posts

or just do:

<?php
$time1 = strtotime('2010-12-13 15:26:56');
$time2 = strtotime('2011-12-13 15:26:56');

echo $result = ($time2 - $time1)/3600; //60seconds * 60min ?> 

These look like timestamps returned from a MySQL database? If so, do it in SQL, it's quite a bit faster.

 

Generally, the best way to do this is to get the UNIX_TIMESTAMP of each date so you can get the difference in seconds, then use simple arithmetic to determine if you want to show how many hours/days/etc difference there is.

 

SELECT UNIX_TIMESTAMP(`date1`) as `date1_stamp`, UNIX_TIMESTAMP(`date2`) as `date2_stamp` FROM `table`

And if the dates cross one of the changes for daylight savings time, then you are off by 1 hour one way or the other.  If using calculations then make sure that the timestamp is derived by the date at UTC or GMT or any timezone that doesn't observe daylight savings time.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.