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');