php限制某个时间段进行操作

随手记,希望能帮到大家
$time = time();
$start = strtotime(date("Y-m-d", $time) . " 10:00:00");
$end = strtotime(date("Y-m-d", $time) . " 19:50:00");
if(($time < $start) || ($time > $end)){
    
     // 限制时间段操作
	die('请于 10:00-19:45 时间段内再尝试操作');
}
// 可操作 Code.....

猜你喜欢

转载自blog.csdn.net/qq_15957557/article/details/129284871
今日推荐