How do I add a certain number of days to the current date in PHP?
I already got the current date with:
$today = date('y:m:d');
Just need to add x number of days to it
|
|
|
php supports c style date functions. You can add or substract date-periods with english-language style phrases via the strtotime function. examples...
|
|||||||
|
|
a day is 86400 seconds.
|
|||||||||
|
|
The |
|||
|
|
|
With php 5.3
will output 2012-12-24 2012-12-25 2012-12-26 |
|||
|
|