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?
feedback
|
|
To add one year to todays date use the following:
For the other examples you must initialize $StartingDate with a timestamp value for example:
Try this
or
| |||||
|
feedback
|
|
Try: | |||||||||
feedback
|
|
| |||
feedback
|
|
If you are using PHP 5.3, it is because you need to set the default time zone:
| |||
|
feedback
|
|
Try This
| |||
|
feedback
|