17

我想加 1 天,然后从给定时间减去(减)1 秒。

我做了:

$fromDate = date("Y-m-d", strtotime("2012-09-28")).' 00:00:00';
$date = strtotime(date("y-m-d H:m:s", strtotime($fromDate)) . " +1 day") - 1;
$toDate = date('Y-m-d H:m:s', $date);
echo $toDate;

但不是2012-09-28 23:59:59它返回2012-09-29 00:09:59

我究竟做错了什么?

4

2 回答 2

28

您正在转来转去,而不是在代码中找到重点。这是我的DateTime对象解决方案:

$time = new DateTime("2012-09-28");
$time->modify("+1 day");
$time->modify("-1 second");

var_dump($time);

或者,如果您只需要一天的最后一秒,为什么不只是:

$time = "2012-09-28";
$time .= " 23:59:59";

因为每天的秒数/分钟/小时数不太可能改变。

于 2012-10-14T18:19:04.367 回答
2

如果我理解你的话,你只想要一天的最后一秒,对吧?

如果是这种情况,那么您可以:

$theDate = "2012-09-28";
$fromDate = $theDate." 00:00:00";
$toDate = $theDate." 23:59:59";
于 2012-10-14T18:21:19.883 回答