Is there a quicker way of creating a date such as:

echo date('Y-m-d', mktime(0, 0, 0, date("m"), date("d")+3,   date("Y")));

Thanks if you can help.

link|improve this question

68% accept rate
feedback

1 Answer

up vote 3 down vote accepted

How about strtotime():

date('Y-m-d', strtotime('+3 days'));
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.