php 使用slim框架 實現時間段區間,以及時間間隔
阿新 • • 發佈:2022-05-11
// 時間間隔 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; }