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 = "09/04/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/onnVZ on line 10 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 11 04-09-2013 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 13 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 10 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 11 05-09-2013 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 13 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 10 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 11 06-09-2013 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 13 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 10 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 11 07-09-2013 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 13 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 10 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 11 08-09-2013 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 13 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 10 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 11 09-09-2013 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 13 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 10 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 11 10-09-2013 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 13 Deprecated: Function strftime() is deprecated in /in/onnVZ on line 28 Tuesday, 10-09-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.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.6 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
04-09-201305-09-201306-09-201307-09-201308-09-201309-09-201310-09-2013Tuesday, 10-09-2013

preferences:
271.93 ms | 405 KiB | 354 Q