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.

Possible Duplicate:
How to compare two time in PHP

Hi I am new in time functions in php, i have,

@$download_time = date('d-m-Y H:i:s', $dec_time);
$current_time = date('d-m-Y H:i:s');    
$diff = abs(strtotime($current_time) - strtotime($download_time));    
$time=65 // $time is in seconds

Now I want to compare if ($diff < $time) how can I compare with this two values.

share|improve this question
Please make sure to always try the search feature before posting a new question. Chances are your problem has been encountered before and a satisfactory answer already exists. This particular question has been asked and answered thousands of times before. Good luck! – rdlowrey Nov 15 '12 at 4:29
thanx i will do from next... – vvidya Nov 15 '12 at 5:19

marked as duplicate by Dagon, Phil, rdlowrey, markus, Graviton Nov 27 '12 at 7:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

If $dec_time is a unix timestamp, then simply:

if (time() - $dec_time < $time) {/* ... */}

Else if it is a textual representation:

if (time() - strtotime($dec_time) < $time) {/* ... */}

Be aware of using needless variables if it's doesn't needed later, because you can save a lot of memory if keep an eye of this. If the server's PHP version is above 5.2, then you can use the DateTime class wich gives you a lot of extended functionality.

I didn't understood why is the abs() because the download time should be at the past.

Notice: Keep the @'s away from your code, because it costs a lot of additional calculations for the PHP interpreter, maybe it is longer to type, but test if the variable exists before, like:

if (!empty($dec_time) && time() - strtotime($dec_time) < $time) {/* ... */}
share|improve this answer

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