3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dateFrom = new DateTime('25-02-2013'); $dateTo = new DateTime("25-03-2013"); $date = $dateFrom; $result = array(); while ($dateFrom != $dateTo) { $result[] = $date->format("d-m-Y"); $date->modify('+1 day'); } print_r($result);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 25-02-2013 [1] => 26-02-2013 [2] => 27-02-2013 [3] => 28-02-2013 [4] => 01-03-2013 [5] => 02-03-2013 [6] => 03-03-2013 [7] => 04-03-2013 [8] => 05-03-2013 [9] => 06-03-2013 [10] => 07-03-2013 [11] => 08-03-2013 [12] => 09-03-2013 [13] => 10-03-2013 [14] => 11-03-2013 [15] => 12-03-2013 [16] => 13-03-2013 [17] => 14-03-2013 [18] => 15-03-2013 [19] => 16-03-2013 [20] => 17-03-2013 [21] => 18-03-2013 [22] => 19-03-2013 [23] => 20-03-2013 [24] => 21-03-2013 [25] => 22-03-2013 [26] => 23-03-2013 [27] => 24-03-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:
39.14 ms | 402 KiB | 8 Q