Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.