PHP教程

php 使用slim框架 实现时间段区间,以及时间间隔

本文主要是介绍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;
    }

 

这篇关于php 使用slim框架 实现时间段区间,以及时间间隔的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!