3v4l.org

run code in 300+ PHP versions simultaneously
<?php function daysInWeek($weekNum) { $result = array(); $datetime = new DateTime('00:00:00'); $datetime->setISODate((int)$datetime->format('o'), $weekNum, 1); $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; } //and the difficult ones:- var_dump(daysInWeek(39));
Output for git.master, git.master_jit, rfc.property-hooks
array(7) { [0]=> string(23) "Mon 22 09 2014 00:00:00" [1]=> string(23) "Tue 23 09 2014 00:00:00" [2]=> string(23) "Wed 24 09 2014 00:00:00" [3]=> string(23) "Thu 25 09 2014 00:00:00" [4]=> string(23) "Fri 26 09 2014 00:00:00" [5]=> string(23) "Sat 27 09 2014 00:00:00" [6]=> string(23) "Sun 28 09 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:
48.08 ms | 402 KiB | 8 Q