Calculate business days

后端 未结 30 1830
猫巷女王i
猫巷女王i 2020-11-22 05:16

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 weekend

30条回答
  •  广开言路
    2020-11-22 05:57

    Brute attempt to detect working time - Monday to Friday 8am-4pm:

    if (date('N')<6 && date('G')>8 && date('G')<16) {
       // we have a working time (or check for holidays)
    }
    

提交回复
热议问题