5

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');
Community
  • 1
  • 1
mrdaliri
  • 7,148
  • 22
  • 73
  • 107

1 Answers1

25

array_splice is probably what you're looking for:

array_splice($a, 1, 0, array('c', 'd'));
KARASZI István
  • 30,900
  • 8
  • 101
  • 128