3v4l.org

run code in 300+ PHP versions simultaneously
<?php $cars = array ( array(22,18), array(15,13), array(5,2), array(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>22</li><li>18</li> Warning: Undefined array key 2 in /in/FCtGp on line 14 <li></li></ul><p><b>Row number 1</b></p><ul><li>15</li><li>13</li> Warning: Undefined array key 2 in /in/FCtGp on line 14 <li></li></ul><p><b>Row number 2</b></p><ul><li>5</li><li>2</li> Warning: Undefined array key 2 in /in/FCtGp on line 14 <li></li></ul><p><b>Row number 3</b></p><ul><li>17</li><li>15</li> Warning: Undefined array key 2 in /in/FCtGp on line 14 <li></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:
48.23 ms | 402 KiB | 8 Q