3v4l.org

run code in 300+ PHP versions simultaneously
<?php // user input of years $ar = [1944, 1674, 3021]; // find max year $maxCentury = max(...$ar); // get max century $roundedCentury = round($maxCentury, -3); foreach($ar as $year) { foreach(range(0, $roundedCentury, 1000) as $century) { if($century <= $year) { echo "<li> $century <ul>" . $year . "</ul> </li>"; } } }
Output for git.master, git.master_jit, rfc.property-hooks
<li> 0 <ul>1944</ul> </li><li> 1000 <ul>1944</ul> </li><li> 0 <ul>1674</ul> </li><li> 1000 <ul>1674</ul> </li><li> 0 <ul>3021</ul> </li><li> 1000 <ul>3021</ul> </li><li> 2000 <ul>3021</ul> </li><li> 3000 <ul>3021</ul> </li>

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:
63.44 ms | 402 KiB | 8 Q