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('d/m/Y'); } return $result; } var_dump(daysInWeek(24));
Output for git.master, git.master_jit, rfc.property-hooks
array(7) { [0]=> string(10) "09/06/2014" [1]=> string(10) "10/06/2014" [2]=> string(10) "11/06/2014" [3]=> string(10) "12/06/2014" [4]=> string(10) "13/06/2014" [5]=> string(10) "14/06/2014" [6]=> string(10) "15/06/2014" }

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