3v4l.org

run code in 300+ PHP versions simultaneously
<?php function daysInWeek($weekNum) { $result = array(); $datetime = new DateTime(); $datetime->setISODate((int)$datetime->format('o'), $weekNum, 1)->setTime(0, 0, 0); $interval = new DateInterval('P1D'); $week = new DatePeriod($datetime, $interval, 6); foreach($week as $day){ $result[] = $day->format('D d m Y H:i:s'); } return $result; } var_dump(daysInWeek(24)); //and the difficult ones:- var_dump(daysInWeek(1)); var_dump(daysInWeek(52));
Output for git.master, git.master_jit, rfc.property-hooks
array(7) { [0]=> string(23) "Mon 09 06 2014 00:00:00" [1]=> string(23) "Tue 10 06 2014 00:00:00" [2]=> string(23) "Wed 11 06 2014 00:00:00" [3]=> string(23) "Thu 12 06 2014 00:00:00" [4]=> string(23) "Fri 13 06 2014 00:00:00" [5]=> string(23) "Sat 14 06 2014 00:00:00" [6]=> string(23) "Sun 15 06 2014 00:00:00" } array(7) { [0]=> string(23) "Mon 30 12 2013 00:00:00" [1]=> string(23) "Tue 31 12 2013 00:00:00" [2]=> string(23) "Wed 01 01 2014 00:00:00" [3]=> string(23) "Thu 02 01 2014 00:00:00" [4]=> string(23) "Fri 03 01 2014 00:00:00" [5]=> string(23) "Sat 04 01 2014 00:00:00" [6]=> string(23) "Sun 05 01 2014 00:00:00" } array(7) { [0]=> string(23) "Mon 22 12 2014 00:00:00" [1]=> string(23) "Tue 23 12 2014 00:00:00" [2]=> string(23) "Wed 24 12 2014 00:00:00" [3]=> string(23) "Thu 25 12 2014 00:00:00" [4]=> string(23) "Fri 26 12 2014 00:00:00" [5]=> string(23) "Sat 27 12 2014 00:00:00" [6]=> string(23) "Sun 28 12 2014 00:00:00" }

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:
30.86 ms | 404 KiB | 8 Q