I'm trying to get a date that is one year from the date I specify.

My code looks like this:

$futureDate=date('Y-m-d', strtotime('+one year', $startDate));

It's returning the wrong date. Any ideas why?

link|improve this question

6  
You forgot to tell about the error. – BalusC Dec 15 '09 at 3:49
Frank Farmer: are you so certain? I would rather wait for OP's retifications/comments. – BalusC Dec 15 '09 at 4:12
In my haste to post this last night I forgot to clarify - it was returning the wrong date. Sorry! Thanks for your help. – Matt Dec 15 '09 at 16:05
feedback

5 Answers

up vote 7 down vote accepted

To add one year to todays date use the following:

$oneYearOn = date('Y-m-d',strtotime(date("Y-m-d", mktime()) . " + 365 day"));

For the other examples you must initialize $StartingDate with a timestamp value for example:

$StartingDate = mktime();  // todays date as a timestamp

Try this

$newEndingDate = date("Y-m-d", strtotime(date("Y-m-d", strtotime($StaringDate)) . " + 365 day"));

or

$newEndingDate = date("Y-m-d", strtotime(date("Y-m-d", strtotime($StaringDate)) . " + 1 year"));
link|improve this answer
Adding "+365" instead of "+1 year" did it. Thanks! – Matt Dec 15 '09 at 16:01
"* 365 days" rather. – Matt Dec 15 '09 at 16:03
feedback

Try: $futureDate=date('Y-m-d',strtotime('+1 year',$startDate));

link|improve this answer
While that does return the right answer, the other one does not actually return an error either... just the wrong date. – SeanJA Dec 15 '09 at 3:56
1  
strtotime doesn't throw errors. It returns false in the case of an error. – Frank Farmer Dec 15 '09 at 4:01
PHP will throw warnings if the default timezone is not set... though apparently that is not what he meant – SeanJA Dec 18 '09 at 12:32
feedback

strtotime() is returning bool(false), because it can't parse the string '+one year' (it doesn't understand "one"). false is then being implicitly cast to the integer timestamp 0. It's a good idea to verify strtotime()'s output isn't bool(false) before you go shoving it in other functions.

From the docs:

Return Values

Returns a timestamp on success, FALSE otherwise. Previous to PHP 5.1.0, this function would return -1 on failure.

link|improve this answer
Yeah, good point. My production code will have that, but I was tearing my hair out trying to get this to work, so stripped it down to as little code as possible. Thanks! – Matt Dec 15 '09 at 16:02
feedback

If you are using PHP 5.3, it is because you need to set the default time zone:

date_default_timezone_set()
link|improve this answer
feedback

Try This

$nextyear  = date("M d,Y",mktime(0, 0, 0, date("m",strtotime($startDate)),   date("d",strtotime($startDate)),   date("Y",strtotime($startDate))+1));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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