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] => 01/01/1970 )

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