php - 午夜问题的DateInterval

时间:2018-01-19 15:34:53

标签: php datetime dateinterval timeslots

我想用DateInterval生成时段,当我在午夜(00:00)选择结束时段时出现问题。

如果我的结束时间是直到" 23:59"

,那么一切都会产生

这是我的输入变量代码:

$duration = 30; // duration interval<br>
$start    = '22:00'; // start period<br>
$end      = '02:00'; // end period<br>

function generateTimeSlots($duration, $start, $end) {
    $start         = new DateTime($start);
    $end           = new DateTime($end);
    $interval      = new DateInterval("PT" . $duration . "M");
    $periods = array(); 

    for ($intStart = $start; $intStart < $end; $intStart->add($interval)) {
        $endPeriod = clone $intStart;
        $endPeriod->add($interval); 
        if ($endPeriod > $end) {
            $endPeriod = $end;
        }
        $periods[] = $intStart->format('H:i A');
    }

    return $periods;
}


$duration = 30;
$start    = '22:00'; // 10:00 PM
$end      = '02:00'; // 02:00 AM

print_r( generateTimeSlots($duration, $start, $end) );

预期产量:
22:00 PM
22:30 PM 下午23:00
下午23:30 00:00 PM
00:30 PM 01:00 PM
01:30 PM 02:00 PM

如果我的结束时段超过23:59,则不会生成任何时段。

任何人都知道应该是什么问题?

2 个答案:

答案 0 :(得分:0)

保持简单并使用strtotime()函数。这样你只处理一个整数。然后在您的观点方面,您可以将其转换回您需要的任何内容。

function generateTimeSlots($duration, $start, $end) {

    $periods = array(); 

    for ($intStart = $start; $intStart <= $end; $intStart += $duration) {
        // $endPeriod = clone $intStart;
        // $endPeriod = $end; 
        // if ($endPeriod > $end) {
        //     $endPeriod = $end;
        // }
        $periods[] = date('H:i A', $intStart);
    }

    return $periods;
}


$duration = 1800; #1800 seconds (30 minutes)
$start    = strtotime('Today 22:00'); // 10:00 PM Today
$end      = strtotime('Tomorrow 02:00'); // 02:00 AM Tomorrow

print_r( generateTimeSlots($duration, $start, $end) );

答案 1 :(得分:0)

您还需要在$start$end参数中包含有关当天的信息。如果没有提及,DateTime会自动选择当天,在您的示例中,这意味着您的开始日期为2018-01-19 22:00:00,结束日期为2018-01-19 02:00:00。由于您的结束日期是 结束日期之后,您的for循环根本就不会被迭代。

要解决此问题,您可以指定整个日期和时间,也可以使用PHP的本机日期识别。我个人倾向于使用完整日期,因为我发现通过不必解释人类可读的字符串,它会使代码更加健壮。

// using complete dates
$startDateTime = new DateTime('2018-01-19 22:00:00');
$endDateTime = new DateTime('2018-01-20 02:00:00');

// using human readable strings    
$startDateTime = new DateTime('today 22pm');
$endDateTime = new DateTime('tomorrow 2am');