3v4l.org

run code in 300+ PHP versions simultaneously
<?php $holidayList = array("04-03-2008","07-03-2008"); $j = $i = 0; //changed this to 0 or you were always starting one day ahead $given_date = "04/09/2013 13:06:00"; $tmp1 = strtotime($given_date); //worked out a timstamp to start with while($i < 5) { $tmp2 = strtotime("+$j day", $tmp1); $day = strftime("%A",$tmp2); echo strftime("%d-%m-%Y",$tmp2); $tmp = strftime("%d-%m-%Y",$tmp2); if(($day != "Sunday") && ($day != "Saturday" )&&(!in_array($tmp, $holidayList))) { $i = $i + 1; $j = $j + 1; } else { $j = $j + 1; } } $j = $j -1; $newdate = strtotime("+$j day",$tmp1); echo $working_days = strftime("%A, %d-%m-%Y",$newdate);
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Function strftime() is deprecated in /in/E5sZj on line 10 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 11 09-04-2013 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 13 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 10 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 11 10-04-2013 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 13 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 10 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 11 11-04-2013 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 13 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 10 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 11 12-04-2013 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 13 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 10 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 11 13-04-2013 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 13 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 10 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 11 14-04-2013 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 13 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 10 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 11 15-04-2013 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 13 Deprecated: Function strftime() is deprecated in /in/E5sZj on line 28 Monday, 15-04-2013
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
09-04-201310-04-201311-04-201312-04-201313-04-201314-04-201315-04-2013Monday, 15-04-2013

preferences:
327.29 ms | 405 KiB | 457 Q