3v4l.org

run code in 300+ PHP versions simultaneously
<?php $date1 = date_create('2014-07-19 13:00'); $date2 = date_create('2014-07-20 13:00'); $newArr = array(); // if start date is to be included then use $newArr[] = date_format($date1, 'Y-m-d H:i:s'); while($date1 < $date2) { $date1 = date_add($date1,date_interval_create_from_date_string('1 hour')); $newArr[] = date_format($date1, 'Y-m-d H:i:s'); } echo "<pre>"; print_r($newArr); echo "</pre>";
Output for git.master, git.master_jit, rfc.property-hooks
<pre>Array ( [0] => 2014-07-19 13:00:00 [1] => 2014-07-19 14:00:00 [2] => 2014-07-19 15:00:00 [3] => 2014-07-19 16:00:00 [4] => 2014-07-19 17:00:00 [5] => 2014-07-19 18:00:00 [6] => 2014-07-19 19:00:00 [7] => 2014-07-19 20:00:00 [8] => 2014-07-19 21:00:00 [9] => 2014-07-19 22:00:00 [10] => 2014-07-19 23:00:00 [11] => 2014-07-20 00:00:00 [12] => 2014-07-20 01:00:00 [13] => 2014-07-20 02:00:00 [14] => 2014-07-20 03:00:00 [15] => 2014-07-20 04:00:00 [16] => 2014-07-20 05:00:00 [17] => 2014-07-20 06:00:00 [18] => 2014-07-20 07:00:00 [19] => 2014-07-20 08:00:00 [20] => 2014-07-20 09:00:00 [21] => 2014-07-20 10:00:00 [22] => 2014-07-20 11:00:00 [23] => 2014-07-20 12:00:00 [24] => 2014-07-20 13:00:00 ) </pre>

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:
42.61 ms | 403 KiB | 8 Q