gpt4 book ai didi

php - 检查给定日期是否已过

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

我有一个包含事件的周历,并且希望用户不能添加过去几天的事件。所以我打算使用这样的函数:

if( strtotime($this->day) < time() ){ // date format is YYYY-MM-DD
// date is past
}else{
// date is not past
}

它似乎工作正常,只是它将今天日期视为过去的一天。我做错了什么?

最佳答案

更简单 ->

if(strtotime($this->day) < strtotime(date('Y-m-d')))
{
...
}
else
{
...
}

关于php - 检查给定日期是否已过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3297713/

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