Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 80529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:19:01+00:00 2026-05-10T21:19:01+00:00

I need a method for adding business days in PHP. For example, Friday 12/5

  • 0

I need a method for adding ‘business days’ in PHP. For example, Friday 12/5 + 3 business days = Wednesday 12/10.

At a minimum I need the code to understand weekends, but ideally it should account for US federal holidays as well. I’m sure I could come up with a solution by brute force if necessary, but I’m hoping there’s a more elegant approach out there. Anyone?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T21:19:01+00:00Added an answer on May 10, 2026 at 9:19 pm

    Here’s a function from the user comments on the date() function page in the PHP manual. It’s an improvement of an earlier function in the comments that adds support for leap years.

    Enter the starting and ending dates, along with an array of any holidays that might be in between, and it returns the working days as an integer:

    <?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('2008-12-22','2009-01-02',$holidays) // => will return 7 ?> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 95k
  • Answers 95k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Might be a UIPI issue: User Interface Privilege Isolation (UIPI)… May 11, 2026 at 6:57 pm
  • Editorial Team
    Editorial Team added an answer This is normal behaviour. The .NET roles section manages the… May 11, 2026 at 6:57 pm
  • Editorial Team
    Editorial Team added an answer You can use Set-ItemProperty: Set-ItemProperty file.txt -name IsReadOnly -value $false… May 11, 2026 at 6:57 pm

Related Questions

The preamble: I have designed a strongly interfaced and fully mockable data layer class
I have a problem with uninitialized proxies in nhibernate The Domain Model Let's say
I recently asked this question: Expose XML or Objects - thanks all for the
How much code documentation in your .NET source is too much? Some background: I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.