php判断当前时间是否在每天的某一时间区域内

php判断当前时间是否在每天的某一时间区域内

<?php function get_curr_time_section(){    $checkDayStr = date('Y-m-d ',time());    $timeBegin1 = strtotime($checkDayStr."09:00".":00");    $timeEnd1 = strtotime($checkDayStr."18:00".":00");       $curr_time = time();       if($curr_time >= $timeBegin1 && $curr_time <= $timeEnd1)    {        return 0;    }        return -1;}     $result = get_curr_time_section();    echo $result;

php判断当前时间是否在每天的某一时间区域内
php判断当前时间是否在每天的某一时间区域内标题图片

延伸阅读:

    无相关信息
标签:

上一篇:PHP Warning: file_get_contents failed to open stream

下一篇:PHP 中where 1

留言与评论(共有 0 条评论)
   
验证码: