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.

Link to comment
Share on other sites

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.