如何指定星期六作为strtotime的一周工作日

时间:2014-01-17 13:14:49

标签: php strtotime

我需要在当前日期添加2个工作日。 我打算使用strtotime,但strtotime的工作日不包括星期六。

$now = date("Y-m-d H:i:s");
$add = 2;
$format = "d.m.Y";
if(date('H') < 12) {
    $add = 1;
}
$date = strtotime($now . ' +'.$add.' weekdays');
echo date($format, $date);

如果你在星期五运行,这将在星期二输出。但它实际上应该在周一返回。

如何将星期六添加为工作日?

1 个答案:

答案 0 :(得分:2)

从特定日期+当日偏移量获取下一个工作日:

function get_next_business_date($from, $days) {
    $workingDays = [1, 2, 3, 4, 5, 6]; # date format = N (1 = Monday, ...)
    $holidayDays = ['*-12-25', '*-01-01', '2013-12-24']; # variable and fixed holidays

    $from = new DateTime($from);
    while ($days) {
        $from->modify('+1 day');
        if (!in_array($from->format('N'), $workingDays)) continue;
        if (in_array($from->format('Y-m-d'), $holidayDays)) continue;
        if (in_array($from->format('*-m-d'), $holidayDays)) continue;
        $days--;
    }
    return $from->format('Y-m-d'); #  or just return DateTime object
}

print_r( get_next_business_date('today', 2) );

demo