Click on a specific array position

Possible duplicate:
Paste into array at specific location

How to push 1 or more values ​​to the middle (or a specific position / index) of an array? eg:

$a = array('a', 'b', 'e', 'f'); array_pushTo($a, 1, 'c', 'd'); // that function i'm looking for. first parameter is the array, second is the index, and third and other are the values. // $a now is: array('a', 'b', 'c', 'd', 'e', 'f'); 
+4
source share
1 answer

array_splice is probably what you are looking for:

 array_splice($a, 1, 0, array('c', 'd')); 
+22
source

Source: https://habr.com/ru/post/1396646/


All Articles