3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = [0,1,2,3,4,5,6]; $count = count($a); for($i=0;$i<$count;$i++){ echo 's ' . $i.PHP_EOL; if ($a[$i]==3) { unset($a[$i]); $count--; $i--; } echo 'e ' . $i.PHP_EOL; }
Output for git.master, git.master_jit, rfc.property-hooks
s 0 e 0 s 1 e 1 s 2 e 2 s 3 e 2 s 3 Warning: Undefined array key 3 in /in/3Gmnr on line 6 e 3 s 4 e 4 s 5 e 5

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