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 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
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 )

preferences:
240.27 ms | 405 KiB | 301 Q