php 使用slim框架 实现时间段区间,以及时间间隔
作者:互联网
// 时间间隔 public static function timeInterval(){ $req=self::app()->request(); $startTimeSlot=$req->post('startTimeSlot'); // 接收时间段开始区间 数字 $time=$startTimeSlot.':00'; // 拼接成00:00格式 $endTimeSlot=$req->post('endTimeSlot'); // 接收时间段结束区间 数字 $end = $endTimeSlot.':00'; // 拼接成00:00格式 $item=$req->post('interval'); // 接收时间间隔 $buff = array(); for($i=strtotime($time) ;$i<strtotime($end) ; $i=$i+60*60*$item){ $buff[]=date("H:i",$i); } $str = array(); $num = count($buff); foreach($buff as $key=>$val){ if($key < $num){ $time_str = strtotime($val); $str[] = array( 'start_time' => date('H:i',$time_str), 'end_time' =>date('H:i',$time_str + 60*60*$item) ); } } return $str; }
标签:00,req,slim,startTimeSlot,endTimeSlot,时间段,str,time,php 来源: https://www.cnblogs.com/ahao513/p/16257927.html