gpt4 book ai didi

PHP 检查时间戳是否大于现在的 24 小时

转载 作者:可可西里 更新时间:2023-10-31 22:09:26 25 4
gpt4 key购买 nike

我的软件需要确定截止日期时间是否大于现在的 24 小时。这是我必须测试的代码。

 $date = strtotime("2013-07-13") + strtotime("05:30:00");

if($date > time() + 86400) {
echo 'yes';
} else {
echo 'no';
}

我当前的日期和时间是 2013 年 7 月 13 日凌晨 2 点。如您所见,距离酒店只有 3 小时路程。在我的数学那是 10800 秒。我的功能是返回 yes。对我来说,这就是说 $date 大于现在加上 86400 秒,而实际上只有 10800 秒。这不应该返回 no 吗?

最佳答案

$date = strtotime("2013-07-13") + strtotime("05:30:00");

应该是

$date = strtotime("2013-07-13 05:30:00");

See difference in this CodePad

关于PHP 检查时间戳是否大于现在的 24 小时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17627058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com