gpt4 book ai didi

php - 如何检查当前日期/时间是否超过设定的日期/时间?

转载 作者:IT老高 更新时间:2023-10-28 11:49:53 26 4
gpt4 key购买 nike

我正在尝试编写一个脚本来检查当前日期/时间是否超过 05/15/2010 下午 4 点

如何使用 PHP 的 date() 函数来执行此检查?

最佳答案

由于 PHP >= 5.2.2,您可以使用 DateTime类:

if (new DateTime() > new DateTime("2010-05-15 16:00:00")) {
# current time is greater than 2010-05-15 16:00:00
# in other words, 2010-05-15 16:00:00 has passed
}

传递给 DateTime constructor 的字符串被解析 according to these rules .


注意,也可以使用 timestrtotime 函数。 See original answer .

关于php - 如何检查当前日期/时间是否超过设定的日期/时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2832467/

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