码迷,mamicode.com
首页 > 其他好文 > 详细

获取每天每个小时时间范围

时间:2018-01-12 19:44:04      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:end   date   span   art   bsp   style   ==   ++   body   

//========== 每天每小时的时间格式 ============
$days = ceil(($end_time_stamp + 1 - $start_time_stamp) / 3600);
for($j = 0; $j < $days; $j++) {
    $date_start = $start_time_stamp + $j * 86400;
    $date_end = ($date_start + 86399) > $end_time_stamp ? $end_time_stamp : ($date_start + 86399);
    $hours = ceil(($date_end + 1 - $date_start) / 3600);
    for($i = 0; $i < $hours; $i++) {
        $hour_arr[] = date(‘H:00‘,$date_start + $i * 3600);
        // $start = $date_start + $i * 3600;
        // $end = $start + 3600 - 1;    
    }
}
//============================================

 

获取每天每个小时时间范围

标签:end   date   span   art   bsp   style   ==   ++   body   

原文地址:https://www.cnblogs.com/lonmyblog/p/8277348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!