I'd like to find the date after a date provided by the user
This is not working:
$start_date = '2009-06-10';
$next_day = date( $start_date, strtotime('+1 day') );
echo $next_day; // 2009-06-10
|
|
|
|
|
|
|
Try date_modify:
Documentation at http://us3.php.net/manual/en/datetime.modify.php. |
||
|
|
|
||||||
|
|
|
EDIT: As Kristina pointed out this method doesn't work since DateTime::modify doesn't return the modified date as I suspected. (PHP, I hate your inconsistency!) This code now works as expected and looks IMHO a little bit more consistent than date_modify :)
|
|||