3v4l.org

run code in 300+ PHP versions simultaneously
<?php $cars = array ( array("Volvo",22,18), array("BMW",15,13), array("Saab",5,2), array("Land Rover",17,15) ); for ($row = 0; $row < 4; $row++) { echo "<p><b>Row number $row</b></p>"; echo "<ul>"; for ($col = 0; $col < 3; $col++) { echo "<li>".$cars[$row][$col]."</li>"; } echo "</ul>"; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
<p><b>Row number 0</b></p><ul><li>Volvo</li><li>22</li><li>18</li></ul><p><b>Row number 1</b></p><ul><li>BMW</li><li>15</li><li>13</li></ul><p><b>Row number 2</b></p><ul><li>Saab</li><li>5</li><li>2</li></ul><p><b>Row number 3</b></p><ul><li>Land Rover</li><li>17</li><li>15</li></ul>

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