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