Check if a given date is past

后端 未结 3 1634
轮回少年
轮回少年 2021-01-17 14:57

I have a week calendar that holds events, and want that users can\'t add events for the past days. So I\'m tring to use a function like that:

if( strtotime($         


        
3条回答
  •  庸人自扰
    2021-01-17 15:20

    Simpler ->

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

提交回复
热议问题