Jump to content

Calculate date no more than 365 from now


freakness883

Recommended Posts

It depends how you're using it because you have !

Example:
[code]
$expiration_date = '01/01/2006';

if ((floor((time() - strtotime($expiration_date))/86400) > 365)) {
    echo 'outside of 365 days';
} else {
    echo 'within 365 days';  // displays this

}
[/code]

Using 07/12/2005 date with the example code will display that it's outside the 365 day window.

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.