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); $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) "14/06/0100" [1]=> string(10) "15/06/0100" [2]=> string(10) "16/06/0100" [3]=> string(10) "17/06/0100" [4]=> string(10) "18/06/0100" [5]=> string(10) "19/06/0100" [6]=> string(10) "20/06/0100" }

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