3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array1 = array('test1' => 1, 'test2' => 2,'test3' => 3,'test4' => 4,'test5' => 5,'test6' => 6,'test7' => 7,'test8' => 8); $originalArray = $array1; $array2 = array('a','b','c','d','e','f','g'); /* $n = count($array1); for($x = 0; $x < $n; $x++) { array_splice($array1, 1, -$x); print_r ($array1); $array1 = $originalArray; } */ $result = array_splice($array1, -6, -2, $array2); print_r ($array1); print_r($result);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [test1] => 1 [test2] => 2 [0] => a [1] => b [2] => c [3] => d [4] => e [5] => f [6] => g [test7] => 7 [test8] => 8 ) Array ( [test3] => 3 [test4] => 4 [test5] => 5 [test6] => 6 )

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