2012-06-21 49 views
2
我使用此功能(我在这个论坛上找到)来计算范围之间的工作日天数

PHP计算基于功能的日期为工作日

<?php 
//The function returns the no. of business days between two dates and it skips the holidays 
function getWorkingDays($startDate,$endDate,$holidays){ 
// do strtotime calculations just once 
$endDate = strtotime($endDate); 
$startDate = strtotime($startDate); 


//The total number of days between the two dates. We compute the no. of seconds and divide it to 60*60*24 
//We add one to inlude both dates in the interval. 
$days = ($endDate - $startDate)/86400 + 1; 

$no_full_weeks = floor($days/7); 
$no_remaining_days = fmod($days, 7); 

//It will return 1 if it's Monday,.. ,7 for Sunday 
$the_first_day_of_week = date("N", $startDate); 
$the_last_day_of_week = date("N", $endDate); 

//---->The two can be equal in leap years when february has 29 days, the equal sign is added here 
//In the first case the whole interval is within a week, in the second case the interval falls in two weeks. 
if ($the_first_day_of_week <= $the_last_day_of_week) { 
    if ($the_first_day_of_week <= 6 && 6 <= $the_last_day_of_week) $no_remaining_days--; 
    if ($the_first_day_of_week <= 7 && 7 <= $the_last_day_of_week) $no_remaining_days--; 
} 
else { 
    // (edit by Tokes to fix an edge case where the start day was a Sunday 
    // and the end day was NOT a Saturday) 

    // the day of the week for start is later than the day of the week for end 
    if ($the_first_day_of_week == 7) { 
     // if the start date is a Sunday, then we definitely subtract 1 day 
     $no_remaining_days--; 

     if ($the_last_day_of_week == 6) { 
      // if the end date is a Saturday, then we subtract another day 
      $no_remaining_days--; 
     } 
    } 
    else { 
     // the start date was a Saturday (or earlier), and the end date was (Mon..Fri) 
     // so we skip an entire weekend and subtract 2 days 
     $no_remaining_days -= 2; 
    } 
} 

//The no. of business days is: (number of weeks between the two dates) * (5 working days) + the remainder 
//---->february in none leap years gave a remainder of 0 but still calculated weekends between first and last day, this is one way to fix it 
$workingDays = $no_full_weeks * 5; 
if ($no_remaining_days > 0) 
{ 
    $workingDays += $no_remaining_days; 
} 

//We subtract the holidays 
foreach($holidays as $holiday){ 
    $time_stamp=strtotime($holiday); 
    //If the holiday doesn't fall in weekend 
    if ($startDate <= $time_stamp && $time_stamp <= $endDate && date("N",$time_stamp) != 6 && date("N",$time_stamp) != 7) 
     $workingDays--; 
} 

return $workingDays; 
} 

//Example: 

$holidays=array("2008-12-25","2008-12-26","2009-01-01"); 

echo getWorkingDays("$startdate","$enddate",$holidays) 
?> 

现在,我想稍微扩展一下这个功能。如果我从开始日期开始添加X个工作日,我想要生成日期。例如说我有保存价值

$workingdays = "20"; 

一个变量和$startdate2012-06-01我想使这个函数计算的开始日期+ 20个工作日内将是2012-06-28。这可能吗?

回答

8

我在使用下面的函数的同时做了类似的事情。这里的关键是跳过周末,你可以延长这个跳过假期。

例子:

调用的函数 - >addDays(strtotime($startDate), 20, $skipdays,$skipdates = array())

<?php 
    function addDays($timestamp, $days, $skipdays = array("Saturday", "Sunday"), $skipdates = NULL) { 
     // $skipdays: array (Monday-Sunday) eg. array("Saturday","Sunday") 
     // $skipdates: array (YYYY-mm-dd) eg. array("2012-05-02","2015-08-01"); 
     //timestamp is strtotime of ur $startDate 
     $i = 1; 

     while ($days >= $i) { 
      $timestamp = strtotime("+1 day", $timestamp); 
      if ((in_array(date("l", $timestamp), $skipdays)) || (in_array(date("Y-m-d", $timestamp), $skipdates))) 
      { 
       $days++; 
      } 
      $i++; 
     } 

     return $timestamp; 
     //return date("m/d/Y",$timestamp); 
    } 
    ?> 

[编辑]:刚才读NETTUTS一个惊人的文章,希望这有助于http://net.tutsplus.com/tutorials/php/dates-and-time-the-oop-way/

+0

的功能你请解释一下如何使用它?一般来说,我对PHP函数都很陌生。 – David

+0

调用函数 - > addDays(strtotime($ startDate),20,$ skipdays,$ skipdates = NULL); 它确定如果您发送$ val skipDays和$ skipDays的空vals,在这种情况下通过默认星期六,太阳和没有额外的日期将被跳过 –

+0

如何将时间戳thingy转换为实际的Y-M-D日期?是的,我是一个新手.. – David

2

如果有人有兴趣,我使用此功能将X个工作日添加到日期。该函数需要一个时间戳并返回一个时间戳。可以通过数组指定假期(如果在美国,则可以使用usBankHolidays())。

目前,假设周六和周日不是营业日,但可以轻松更改。

代码

function addBusinessDays($date, $days, $holidays = array()) { 
    $output = new DateTime(); 
    $output->setTimestamp($date); 
    while ($days > 0) { 
     $weekDay = $output->format('N'); 

     // Skip Saturday and Sunday 
     if ($weekDay == 6 || $weekDay == 7) { 
      $output = $output->add(new DateInterval('P1D')); 
      continue; 
     } 

     // Skip holidays 
     $strDate = $output->format('Y-m-d'); 
     foreach ($holidays as $s) { 
      if ($s == $strDate) { 
       $output = $output->add(new DateInterval('P1D')); 
       continue 2; 
      } 
     } 

     $days--; 
     $output = $output->add(new DateInterval('P1D')); 
    } 
    return $output->getTimestamp(); 
} 

function usBankHolidays($format = 'datesonly') { 
    $output = array(
     array('2015-05-25', 'Memorial Day'), 
     array('2015-07-03', 'Independence Day'), 
     array('2015-09-07', 'Labor Day'), 
     array('2015-10-12', 'Columbus Day'), 
     array('2015-11-11', 'Veterans Day'), 
     array('2015-11-26', 'Thanksgiving Day'), 
     array('2015-12-25', 'Christmas Day'), 
     array('2016-01-01', 'New Year Day'), 
     array('2016-01-18', 'Martin Luther King Jr. Day'), 
     array('2016-02-15', 'Presidents Day (Washingtons Birthday)'), 
     array('2016-05-30', 'Memorial Day'), 
     array('2016-07-04', 'Independence Day'), 
     array('2016-09-05', 'Labor Day'), 
     array('2016-10-10', 'Columbus Day'), 
     array('2016-11-11', 'Veterans Day'), 
     array('2016-11-24', 'Thanksgiving Day'), 
     array('2016-12-25', 'Christmas Day'), 
     array('2017-01-02', 'New Year Day'), 
     array('2017-01-16', 'Martin Luther King Jr. Day'), 
     array('2017-02-20', 'Presidents Day (Washingtons Birthday)'), 
     array('2017-05-29', 'Memorial Day'), 
     array('2017-07-04', 'Independence Day'), 
     array('2017-09-04', 'Labor Day'), 
     array('2017-10-09', 'Columbus Day'), 
     array('2017-11-10', 'Veterans Day'), 
     array('2017-11-23', 'Thanksgiving Day'), 
     array('2017-12-25', 'Christmas Day'), 
     array('2018-01-01', 'New Year Day'), 
     array('2018-01-15', 'Martin Luther King Jr. Day'), 
     array('2018-02-19', 'Presidents Day (Washingtons Birthday)'), 
     array('2018-05-28', 'Memorial Day'), 
     array('2018-07-04', 'Independence Day'), 
     array('2018-09-03', 'Labor Day'), 
     array('2018-10-08', 'Columbus Day'), 
     array('2018-11-12', 'Veterans Day'), 
     array('2018-11-22', 'Thanksgiving Day'), 
     array('2018-12-25', 'Christmas Day'), 
     array('2019-01-01', 'New Year Day'), 
     array('2019-01-21', 'Martin Luther King Jr. Day'), 
     array('2019-02-18', 'Presidents Day (Washingtons Birthday)'), 
     array('2019-05-27', 'Memorial Day'), 
     array('2019-07-04', 'Independence Day'), 
     array('2019-09-02', 'Labor Day'), 
     array('2019-10-14', 'Columbus Day'), 
     array('2019-11-11', 'Veterans Day'), 
     array('2019-11-28', 'Thanksgiving Day'), 
     array('2019-12-25', 'Christmas Day'), 
     array('2020-01-01', 'New Year Day'), 
     array('2020-01-20', 'Martin Luther King Jr. Day'), 
     array('2020-02-17', 'Presidents Day (Washingtons Birthday)'), 
     array('2020-05-25', 'Memorial Day'), 
     array('2020-07-03', 'Independence Day'), 
     array('2020-09-07', 'Labor Day'), 
     array('2020-10-12', 'Columbus Day'), 
     array('2020-11-11', 'Veterans Day'), 
     array('2020-11-26', 'Thanksgiving Day'), 
     array('2020-12-25', 'Christmas Day '), 
    ); 

    if ($format == 'datesonly') { 
     $temp = array(); 
     foreach ($output as $item) { 
      $temp[] = $item[0]; 
     } 
     $output = $temp; 
    } 

    return $output; 
} 

用法:

$deliveryDate = addBusinessDays(time(), 7, usBankHolidays()); 
+0

尽量让所有假期都动态:) –

+1

foreach $假期中存在一个错误。继续是在foreach范围内,而不是在范围内,你必须继续使用2. –

+0

@LucaS,非常感谢你发现这个错误。 –

0

使用this.lau_ function,我abble扭转这种局面,对于减法日期,使用的有效期限。希望这可以帮助别人:

function subBusinessDays($date, $days, $holidays = array()) { 
      $output = new DateTime(); 
      $output->setTimestamp($date); 

      while ($days > 0) { 

       $output = $output->sub(new DateInterval('P1D')); 

       // Skip holidays 
       $strDate = $output->format('Y-m-d'); 
       if (in_array($strDate, $holidays)) { 
        // Skip Saturday and Sunday 
        $output = $output->sub(new DateInterval('P1D')); 
        continue; 
       } 

       $weekDay = $output->format('N'); 
       if ($weekDay <= 5) { 
        $days --; 
       } 

      } 

      return $output->getTimestamp(); 
     } 
0

从@ this.lau_回答重写更简单,更合乎逻辑算法,动态(固定)holydays

public function addBusinessDays($date, $days) { 

    $output = new DateTime(); 
    $output->setTimestamp($date); 

    while ($days > 0) { 

     $output = $output->add(new DateInterval('P1D')); 
     $weekDay = $output->format('N'); 
     $strDate = $output->format('Y-m-d'); 

     // Skip Saturday and Sunday 
     if ($weekDay == 6 || $weekDay == 7) { 

      continue; 

     } 

     // Skip holidays 
     $holidays = $this->_getHolidays();    

     foreach ($holidays as $holiday_date => $holiday_name) { 

      if ($holiday_date == $strDate) { 

       continue 2; 

      } 

     } 

     $days--; 

    } 

    return $output->getTimestamp(); 

} 



public function _getHolidays() { 

    $feste = array(
     date("Y") . "-01-01" => "Capodanno", 
     date("Y") . "-01-06" => "Epifania", 
     date("Y") . "-04-25" => "Liberazione", 
     date("Y") . "-05-01" => "Festa Lavoratori", 
     date("Y") . "-06-02" => "Festa della Repubblica", 
     date("Y") . "-08-15" => "Ferragosto", 
     date("Y") . "-11-01" => "Tutti Santi", 
     date("Y") . "-12-08" => "Immacolata", 
     date("Y") . "-12-25" => "Natale", 
     date("Y") . "-12-26" => "St. Stefano" 
    ); 

    return $feste; 

} 

呼叫与

$deliveryDate = addBusinessDays(time(), 7);