欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

php经验方法1--判断当前时间是否在某一个时间段内

程序员文章站 2024-03-07 13:17:45
...
public function rangeTime($startTime,$endTime){
        $date = date("Ymd",time());
        //开始时间
        $start = strtotime($date.$startTime);
        $end = strtotime($date.$endTime);
        //当前时间
        $now = time();
        if($now >=$start && $now<=$end){
            return true;
        }else{
            return false;
        }
    }