gpt4 book ai didi

php - 时间戳检查是否为 10 分钟前

转载 作者:行者123 更新时间:2023-12-04 20:28:21 25 4
gpt4 key购买 nike

我在使用 date("Y-m-d h:i:s", strtotime("+2 minutes")) 保存的文本文件中有数据我需要检查它是否是 10 分钟前。我正在尝试以下代码,但即使超过 10 分钟前它也不会打印任何内容。

  $now = date("Y-m-d h:i:s", strtotime("now"));
if($now > strtotime($old_data))
echo 'expired!';

最佳答案

您将格式化日期与时间戳进行比较,这解释了为什么没有任何作用

这里:

$now = strtotime("-10 minutes");

if ($now > strtotime($old_data) {
echo 'expired!';
}

关于php - 时间戳检查是否为 10 分钟前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24442575/

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