<?php
$holidayDates = array(
'2016-03-26',
'2016-03-27',
'2016-03-28',
'2016-03-29',
'2017-04-25',
);
$count5WD = 0;
$temp = strtotime("2017-04-21");
while($count5WD<2){
$next1WD = strtotime('+1 weekday', $temp);
$next1WDDate = date('Y-m-d',...