doujilou3903 2010-12-27 07:49
浏览 95
已采纳

Php - 将时间段划分为相等的间隔

I have to create a function which gets 5 parameters representing information about the working time of some department.
- when the work starts/ends,
- when the lunchtime (or any other break) starts/ends,
- integer representing minutes into how small pieces we should divide time period.

Besides - it's possible that there are no breaks in the working time.

The function should return all intervals from working time.

function split_time_into_intervals($work_starts,$work_ends,$break_starts=null;
          $break_ends=null,$minutes_per_interval=60)
{
    $intervals=array();

    //all of the function code
    return $intervals;
}

So if I have the following parameters for the function

function split_time_into_intervals("8:30","14:50","11:45", "12:25");

I would like to retrieve the following array:

$intervals[0]['starts']="8:30";
$intervals[0]['ends']="9:30";
$intervals[1]['starts']="9:30";
$intervals[1]['ends']="10:30";
$intervals[2]['starts']="10:30";
$intervals[2]['ends']="11:30";
$intervals[3]['starts']="11:30";
$intervals[3]['ends']="11:45";

//this interval was smaller than 60 minutes - because of the break (which starts at 11:45)
$intervals[4]['starts']="12:25";//starts when the break ends
$intervals[4]['ends']="13:25"; // interval is again 60 minutes
$intervals[5]['starts']="13:25";
$intervals[5]['ends']="14:25";
$intervals[6]['starts']="14:25";
$intervals[6]['ends']="14:50";

//this period is shorter than 60 minutes - because work ends 

Any advises? I would apriciate any php (or C#) code regarding to this problem!

  • 写回答

2条回答 默认 最新

  • dongzhi7641 2010-12-27 13:03
    关注

    Finaly I solve my problem! Thanks, tharkun for interest! At this moment it works as I want it to! I suppose that in some cases this function might work with some bugs, so I would like to know if they show up. For now here are two functions. Sory, if it could be written shorter and more optimized, but at least it works!

    //Author: Elvijs Kukša
    function splitTimeIntoIntervals($work_starts,$work_ends,$break_starts=null,$break_ends=null,$minutes_per_interval=60){
    $intervals=array();
    $time = date("H:i",strtotime($work_starts));
    $first_after_break=false;
    while( strtotime($time) < strtotime($work_ends)){
    // if at least one of the arguments associated with breaks is mising - act like there is no break
        if($break_starts==null || $break_starts==null )
        {
        $time_starts=date("H:i", strtotime($time));
        $time_ends=date("H:i", strtotime($time_starts."+$minutes_per_interval minutes"));
        }
    // if the break start/end time is specified
        else{
        if($first_after_break==true){//first start time after break
        $time=(date("H:i",strtotime($break_ends)));
        $first_after_break=false;
        }
        $time_starts=(date("H:i",strtotime($time)));
        $time_ends=date("H:i", strtotime($time_starts."+$minutes_per_interval minutes"));
    //if end_time intersects break_start and break_end times
        if(timesIntersects($time_starts, $time_ends, $break_starts, $break_ends))
        {
        $time_ends=date("H:i",strtotime($break_starts));
        $first_after_break=true;
        }
        }
        //if end_time is after work_ends
        if(date("H:i", strtotime($time_ends))>date("H:i",strtotime($work_ends)))
        {
        $time_ends=date("H:i",strtotime($work_ends));
        }
        $intervals[] = array( 'starts' =>$time_starts, 'ends' => $time_ends);
        $time=$time_ends;
    }
    return $intervals;
    }
    //time intersects if order of parametrs is one of the following 1342 or 1324
    
    
    function timesIntersects($time1_from,$time1_till, $time2_from, $time2_till){
        $out;
        $time1_st=strtotime($time1_from);
        $time1_end=strtotime($time1_till);
        $time2_st=strtotime($time2_from);
        $time2_end=strtotime($time2_till);
        $duration1 =$time1_end - $time1_st;
        $duration2 = $time2_end - $time2_st;
        $time1_length=date("i",strtotime($time1_till."-$time1_from"));
        if(
                (($time1_st<=$time2_st&&$time2_st<=$time1_end&&$time1_end<=$time2_end)
                ||
                ($time1_st<=$time2_st&&$time2_st<=$time2_end&&$time2_end<=$time1_end)
                &&
                ($duration1>=$duration2)
                )
                ||
                ( $time1_st<=$time2_st&&$time2_st<=$time1_end&&$time1_end<=$time2_end)
                &&
                ($duration1<$duration2)
                )
        {
            return true;
        }
    
    
        return false;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊
  • ¥15 安装svn网络有问题怎么办