3v4l.org

run code in 300+ PHP versions simultaneously
<?php function daysInWeek($weekNum) { $result = array(); $datetime = new DateTime(); $datetime->setISODate((int)$datetime->format('Y'), $weekNum, 1); $interval = new DateInterval('P1D'); $week = new DatePeriod($datetime, $interval, 6); foreach($week as $day){ $result[] = $day->format('r'); } return $result; } var_dump(daysInWeek(24));
Output for git.master, git.master_jit, rfc.property-hooks
array(7) { [0]=> string(31) "Mon, 09 Jun 2014 05:42:38 +0200" [1]=> string(31) "Tue, 10 Jun 2014 05:42:38 +0200" [2]=> string(31) "Wed, 11 Jun 2014 05:42:38 +0200" [3]=> string(31) "Thu, 12 Jun 2014 05:42:38 +0200" [4]=> string(31) "Fri, 13 Jun 2014 05:42:38 +0200" [5]=> string(31) "Sat, 14 Jun 2014 05:42:38 +0200" [6]=> string(31) "Sun, 15 Jun 2014 05:42:38 +0200" }

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:
38.03 ms | 402 KiB | 8 Q