我想弄清楚如何计算给定日期之后的日期,例如这个日期:
$json->date = date("12/24/2012");
这不起作用:
date('tomorrow', strtotime($json->date));
使用日期时间
$datetime = new DateTime('tomorrow');
echo $datetime->format('Y-m-d H:i:s');
这应该工作得很好
$date = strtotime(date("Y-m-d", strtotime("2012-10-25")) . " +1 day");