Jump to content

[SOLVED] Simple strtotime() error.


kernelgpf

Recommended Posts

You need to give date it's first formatting parameter:

 

$today=date('m/d/y');
$time="6 MONTHS";
$expires = date('m/d/y', strtotime("$today + $time"));
print "$today and $expires";
?>

Link to comment
Share on other sites

A step better:

 

$today=date('d/m/y');
$time="6 MONTHS";
$expires = date('d/m/y', strtotime("$today + $time"));
print "$today and $expires";

 

But now it prints out "04/05/09 and 05/10/09". It thinks today is April 5th?

Link to comment
Share on other sites

Oh, duh. Sorry. But that's only 5 months, not 6?

Understandably, you're thinking of that because you formatted your date wrong.

 

$today=date('m/d/y');
$time="6 MONTHS";
$expires = date('m/d/y', strtotime("$today + $time"));
echo "$today and $expires";

 

See what that echos out. It should look right to you.

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.