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 D'); } return $result; } var_dump(daysInWeek(24));
Output for git.master, git.master_jit, rfc.property-hooks
array(7) { [0]=> string(14) "10/06/2013 Mon" [1]=> string(14) "11/06/2013 Tue" [2]=> string(14) "12/06/2013 Wed" [3]=> string(14) "13/06/2013 Thu" [4]=> string(14) "14/06/2013 Fri" [5]=> string(14) "15/06/2013 Sat" [6]=> string(14) "16/06/2013 Sun" }

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