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
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) }