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, 3, 2, $array2); print_r ($array1); print_r($result);

preferences:
39.45 ms | 402 KiB | 5 Q