Possible Duplicate:
Insert into array at a specified place
How to push 1 or more values to middle (or a specific position/index) of an array? for example:
$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');
array_splice
is probably what you're looking for:
array_splice($a, 1, 0, array('c', 'd'));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With