Jump to content

Checking TimeStamp Against Today


JustinK101

Recommended Posts

How can I check if a date/time unix timestamp in the format of:

 

$mytime = "1186439997";

 

Is within 5 days of the current unix timestamp? Basically I need to check if the passed in timestamp was generated within 5 days of today? Thanks.

 

 

Link to comment
https://forums.phpfreaks.com/topic/63635-checking-timestamp-against-today/
Share on other sites

That would be fine if you knew the months woudl be the same....

 

 

Try

 

//$t is your preset thing....
if(time() < $t + 24*60*60*5)) echo 'It\'s older than five days!';

//or....

$ntime = time() - $t;

if($ntime > (24*60*60*5)) echo 'Difference is greater than 5 days!';

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.