0

我想弄清楚如何计算给定日期之后的日期,例如这个日期:

$json->date = date("12/24/2012");

这不起作用:

date('tomorrow', strtotime($json->date));
4

2 回答 2

1

使用日期时间

$datetime = new DateTime('tomorrow');
echo $datetime->format('Y-m-d H:i:s');
于 2012-11-27T12:34:31.733 回答
1

这应该工作得很好

$date = strtotime(date("Y-m-d", strtotime("2012-10-25")) . " +1 day");

于 2012-11-27T12:35:15.903 回答