vote up 0 vote down star

I need get a timestamp in PHP for the next day 6pm CST

$tomorrow = mktime(18, 0, 0, date("m"), date("d")+1, date("y"));
echo "Tomorrow is ".date("Y-m-d H:m:s ", $tomorrow);

I was unable to set the minutes part for the above code, it is always returning 11 in the minutes part.

Tomorrow is 2009-11-06 18:11:00
flag

Apache Version : 2.2.11 PHP Version : 5.2.11 – Mithun Nov 5 at 6:33

2 Answers

vote up 6 vote down check

in your date format Y-m-d H:m:s you are showing the month twice m. use i for minutes with leading zeros: Y-m-d H:i:s (PHP Doc)

link|flag
Thanks for finding this out – Mithun Nov 5 at 6:45
vote up 3 vote down

A simpler version is to use strtotime():

echo "Tomorrow is ".date("Y-m-d H:i:s ", strtotime("Tomorrow 6pm"));

including correcting the minutes (from m to i). Output:

Tomorrow is 2009-11-06 18:00:00
link|flag
This is great!! – Mithun Nov 5 at 6:45

Your Answer

Get an OpenID
or

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