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 git.master, git.master_jit, rfc.property-hooks
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

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.82 ms | 405 KiB | 8 Q