Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for an easy way to see if more than two hours has passed between two dates. I can either do this with a MySQL DATETIME value, or if needed, I can convert that to a UNIX timestamp. I just need an easy way to to compare those two dates and see if more than 2 hours has passed.

share|improve this question

4 Answers

up vote 3 down vote accepted

try to look into DATEDIFF function in MySQL.

share|improve this answer
2  
Why not link to the official MySQL documentation of DATEDIFF? – Shi Jul 31 '11 at 3:35
1  
compared to official one, w3school is easier for beginners to understand. – Shivan Raptor Jul 31 '11 at 3:38
1  
Sometimes W3Schools has a much more simplified explanation and examples of language methods. In this example, W3Schools page = simple and straightforward. MySQL doc = HUGE wall of text and function examples. – Jakobud Jul 31 '11 at 3:40

Since you tagged with php, you could use PHP's DateTime::diff (DateTime::diff) to get a diff between two datetime objects. I guess it depends on where in your application you are doing the comparison.

share|improve this answer
MySQL DATEDIFF function should be faster than PHP DateTime::diff calls. – Shivan Raptor Jul 31 '11 at 3:40

A UNIX timestamp is just the number of seconds that have elapsed since 12:00AM UTC, January 1, 1970.

Two hours in seconds is 60 * 60 * 2 = 7200. So,

 if($secondTimestamp - $firstTimestamp >= 7200)
 {
      echo '2 hours have elapsed.';
 }
share|improve this answer

In PHP

  $time = strtotime($date2) - strtotime($date1); //this will give difference in seconds between two dates

  if(($time/3600) >= 2) { // 2 hours has left }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.