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;
}
}
上一篇: 以流的方式下载附件