3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = ['one', 'two', 'three', 'four', 'five']; echo 'foreach on $arr' . PHP_EOL; foreach($arr as $elem) { var_dump(current($arr)); } echo PHP_EOL . 'foreach on $refArr' . PHP_EOL; $refArr = &$arr; foreach($refArr as $elem) { var_dump(current($arr)); } echo 'substituting array during iteration' . PHP_EOL; $refArr = &$arr; foreach($refArr as $elem) { if ($elem == 'three') { $arr = [1, 2, 3, 4, 5]; } echo $elem . PHP_EOL; }
Output for git.master, git.master_jit, rfc.property-hooks
foreach on $arr string(3) "one" string(3) "one" string(3) "one" string(3) "one" string(3) "one" foreach on $refArr string(3) "one" string(3) "one" string(3) "one" string(3) "one" string(3) "one" substituting array during iteration one two three four five

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