3v4l.org

run code in 300+ PHP versions simultaneously
<?php function dateRange($first, $last, $step = '+1 day', $format = 'd/m/Y' ) { echo $first; echo "<br>"; echo $last; echo "<br>"; echo $step; echo "<br>"; $dates = array(); $current = strtotime($first); $last = strtotime($last); while( $current <= $last ) { $dates[] = date($format, $current); $current = strtotime($step, $current); } print_r($dates); exit; return $dates; } dateRange('20-05-2014', '31-05-2014');
Output for git.master, git.master_jit, rfc.property-hooks
20-05-2014<br>31-05-2014<br>+1 day<br>Array ( [0] => 20/05/2014 [1] => 21/05/2014 [2] => 22/05/2014 [3] => 23/05/2014 [4] => 24/05/2014 [5] => 25/05/2014 [6] => 26/05/2014 [7] => 27/05/2014 [8] => 28/05/2014 [9] => 29/05/2014 [10] => 30/05/2014 [11] => 31/05/2014 )

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.77 ms | 402 KiB | 8 Q