Php在当前日期的基础上增加5个工作日,不包括周末(日落)和(多个)假期


Php add 5 working days to current date excluding weekends (sat-sun) and excluding (multiple) holidays

对于我们网店的交付,我们需要从php中的当前日期开始计算5个工作日。

我们的工作日是从周一到周五,我们有几个休息日(假期),这也不包括在内。

我找到了这个剧本,但这不包括假期。

<?php 
    $_POST['startdate'] = date("Y-m-d");
    $_POST['numberofdays'] = 5;
    $d = new DateTime( $_POST['startdate'] );
    $t = $d->getTimestamp();
    // loop for X days
    for($i=0; $i<$_POST['numberofdays']; $i++){
        // add 1 day to timestamp
        $addDay = 86400;
        // get what day it is next day
        $nextDay = date('w', ($t+$addDay));
        // if it's Saturday or Sunday get $i-1
        if($nextDay == 0 || $nextDay == 6) {
            $i--;
        }
        // modify timestamp, add 1 day
        $t = $t+$addDay;
    }
    $d->setTimestamp($t);
    echo $d->format('Y-m-d'). "'n";
?>

您可以使用"while语句",循环直到获得足够的5天时间。每次循环get&检查下一天是否在假期列表中。

以下是示例:

$holidayDates = array(
    '2016-03-26',
    '2016-03-27',
    '2016-03-28',
    '2016-03-29',
    '2016-04-05',
);
$count5WD = 0;
$temp = strtotime("2016-03-25 00:00:00"); //example as today is 2016-03-25
while($count5WD<5){
    $next1WD = strtotime('+1 weekday', $temp);
    $next1WDDate = date('Y-m-d', $next1WD);
    if(!in_array($next1WDDate, $holidayDates)){
        $count5WD++;
    }
    $temp = $next1WD;
}
$next5WD = date("Y-m-d", $temp);
echo $next5WD; //if today is 2016-03-25 then it will return 2016-04-06 as many days between are holidays

一个基于Tinh Dang答案的函数:

function getFutureBusinessDay($num_business_days, $today_ymd = null, $holiday_dates_ymd = []) {
    $num_business_days = min($num_business_days, 1000);
    $business_day_count = 0;
    $current_timestamp = empty($today_ymd) ? time() : strtotime($today_ymd);
    while ($business_day_count < $num_business_days) {
        $next1WD = strtotime('+1 weekday', $current_timestamp);
        $next1WDDate = date('Y-m-d', $next1WD);        
        if (!in_array($next1WDDate, $holiday_dates_ymd)) {
            $business_day_count++;
        }
        $current_timestamp = $next1WD;
    }
    return date('Y-m-d', $current_timestamp);
}

我把循环限制在1000个工作日内。如果需要的话,可以没有限制。

基于Luke的答案:

不同的是,每年都会产生假期

<?php
class DateHelper
{
    //change at will
    const HOLIDAY_DATES = [
        ['day' => 25, 'month' => 12],//christimas
        ['day' => 1, 'month' => 1],//new year
        ['day' => 13, 'month' => 4]//easter
    ];
    /**
     * @param int $numBusinessDays
     * @param 'DateTimeInterface $date
     * @return 'DateTime
     */
    public static function getFutureBusinessDay(int $numBusinessDays, 'DateTimeInterface $date)
    {
        $numBusinessDays = min($numBusinessDays, 1000);
        $businessDayCount = 0;
        $currentTimestamp = strtotime($date->format('Y-m-d'));
        $holidayDates = self::getHolidayDates();
        while ($businessDayCount < $numBusinessDays) {
            $next1WD = strtotime('+1 weekday', $currentTimestamp);
            $next1WDDate = date('Y-m-d', $next1WD);
            if (!in_array($next1WDDate, $holidayDates)) {
                $businessDayCount++;
            }
            $currentTimestamp = $next1WD;
        }
        return (new 'DateTime())->setTimestamp($currentTimestamp);
    }
    /**
     * @return array
     */
    private static function getHolidayDates()
    {
        $holidays = [];
        foreach (self::HOLIDAY_DATES as $holidayDate) {
            $date = new 'DateTime();
            $date->setDate($date->format('Y'), $holidayDate['month'], $holidayDate['day']);
            $holidays[] = $date->format('Y-m-d');
        }
        return $holidays;
    }
}