gpt4 book ai didi

PHP 检查当前时间是否早于指定时间

转载 作者:IT王子 更新时间:2023-10-29 01:08:42 25 4
gpt4 key购买 nike

如果当前时间在当天下午 2 点之前,我需要在 PHP 中进行检查。

我在之前的日期用 strtotime 完成了这个,但是这次它只有一个时间,所以很明显每天 0.00 时间都会重置, bool 值将从 重置falsetrue

if (current_time < 2pm) {
// do this
}

最佳答案

if (date('H') < 14) {
$pre2pm = true;
}

有关日期功能的更多信息,请see the PHP manual .我使用了以下时间格式化程序:

H = 24-hour format of an hour (00 to 23)

关于PHP 检查当前时间是否早于指定时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8475019/

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