php 判断该时间是否在时间段内 10:00-17:00
2022-05-28 本文已影响0人
风度翩翩的程序猿
// 判断是否在营业时间内
$start = $list['start'];// 营业时间开始
$end = $list['end']; // 营业时间结束
//年月日拼接开始时间
$Date = date('Y-m-d ',time());
$date_start = strtotime($Date.$start);
//年月日拼接截止时间
$data_end = strtotime($Date.$end);
$curr_time = time();// 当前时间
//使用逻辑与判断当前时间在哪个时间段
if($curr_time >= $date_start && $curr_time <= $data_end){
$list['is_open'] = 1;
}else{
$list['is_open'] = 0;
}