3v4l.org

run code in 300+ PHP versions simultaneously
<?php function swapOutermost(&$a) { if(count($a) < 2){ return; } $len = count($a); $temp = $a[0]; $a[0] = $a[$len - 1]; $a[$len - 1] = $temp; swapOutermost(array_slice($a, 1, $len - 2)); } $array = [1, 2, 3, 4, 5, 6, 7]; swapOutermost($array); var_export($array);
Output for git.master, git.master_jit, rfc.property-hooks
Notice: Only variables should be passed by reference in /in/CT5QZ on line 11 Notice: Only variables should be passed by reference in /in/CT5QZ on line 11 Notice: Only variables should be passed by reference in /in/CT5QZ on line 11 array ( 0 => 7, 1 => 2, 2 => 3, 3 => 4, 4 => 5, 5 => 6, 6 => 1, )

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:
128.01 ms | 406 KiB | 5 Q