-1

我有两个时间戳:一个来自time()函数,另一个在前端选择用户。我需要比较这两个时间戳,但忽略秒或将其设置为 00。这样做的正确方法是什么?

4

2 回答 2

1

有时间举个例子:

$nr = 1111111122;

$nr = substr($nr, 0, strlen($nr)-2) . "00";
于 2013-11-12T07:55:48.147 回答
0

echo strtotime(date('Ymd H:i:00', time()));

于 2013-11-12T07:57:28.133 回答