DeTechn Blog

PHP 验证当前时间是否在某个时间段

<?php
/*
  验证当前时间是否在某个时间区间内
  @param string $startTime 开始时间 如00:00:00
  @param string $endTime 结束时间 如23:00:00
  @return boolean 在时间区间内返回TRUE 不在时间区间内返回FALSE
*/
public function timeSection($startTime=&#39;00:00:00&#39;,$endTime='23:59:59'){
    //获取当天的日期
    $dateStr = date('Y-m-d',time());
    //定义开始时间和结束时间
    $sTime&nbsp;=&nbsp;strtotime($dateStr.$startTime);
    $eTime&nbsp;=&nbsp;strtotime($dateStr.$endTime);
    $nowTime = time();
    if($nowTime&gt;=$sTime && $nowTime&lt;=$eTime){
        return true;
    }else{
        return false;
    }
}
?>

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »