3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = new DateTime('2013-11-07'); $end = new DateTime('2013-12-31'); while ($start < $end) { $weeks[] = $start->format('d-m-Y'); $start->modify('+1 week'); } print_r($weeks);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 07-11-2013 [1] => 14-11-2013 [2] => 21-11-2013 [3] => 28-11-2013 [4] => 05-12-2013 [5] => 12-12-2013 [6] => 19-12-2013 [7] => 26-12-2013 )

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:
41.9 ms | 401 KiB | 8 Q