3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = ["a", "b", "c", "d", "e", "f"]; foreach($arr as $k => $v) $arr[$k] = ["current" => $v, "next" => ""]; foreach($arr as $k => $v) { if(isset($arr[$k+1])) $arr[$k]["next"] = &$arr[$k+1]["current"]; else $arr[$k]["next"] = ""; } print_r($arr); $arr[1]["current"] = "c"; print_r($arr);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [current] => a [next] => b ) [1] => Array ( [current] => b [next] => c ) [2] => Array ( [current] => c [next] => d ) [3] => Array ( [current] => d [next] => e ) [4] => Array ( [current] => e [next] => f ) [5] => Array ( [current] => f [next] => ) ) Array ( [0] => Array ( [current] => a [next] => c ) [1] => Array ( [current] => c [next] => c ) [2] => Array ( [current] => c [next] => d ) [3] => Array ( [current] => d [next] => e ) [4] => Array ( [current] => e [next] => f ) [5] => Array ( [current] => f [next] => ) )

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:
40.21 ms | 404 KiB | 8 Q