vote up 0 vote down star

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
flag

77% accept rate

3 Answers

vote up 2 vote down

Try date_modify:

$d = new DateTime("2009-01-01"); 
date_modify($d, "+1 day"); 
echo $d->format("Y-m-d");

Documentation at http://us3.php.net/manual/en/datetime.modify.php.

link|flag
1  
Why not directly use the "modify" method from DateTime? – VVS Jun 10 at 14:28
DateTime::modify is an alias of date_modify. – kristina Jun 10 at 14:43
vote up 1 vote down
$start_date = '2009-06-10';

$next_day = date( 'Y-m-d', strtotime( '+1 day', strtotime($start_date) ) );

echo $next_day; // 2009-06-11
link|flag
1  
The second line could be just: $next_day = date('Y-m-d', strtotime($start_date.' +1 day')); – Milen A. Radev Jun 10 at 14:57
Why does that work!? – htxt Jun 10 at 16:57
vote up 0 vote down
$start_date = '2009-06-10';
$next_day = new DateTime($start_date)->modify("+1 day")->format("Y-m-d");

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 :)

$start_date = '2009-06-10';

$next_day = new DateTime($start_date);
$next_day->modify("+1 day")

echo $next_day->format("Y-m-d");
link|flag
DateTime::modify() returns NULL, not a DateTime object (the docs are wrong), so this doesn't work. – kristina Jun 10 at 14:46
Ah, you're right. – VVS Jun 10 at 15:22

Your Answer

Get an OpenID
or

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