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
  • 6,816
  • 22
  • 70
  • 102

1 Answers1

25

array_splice is probably what you're looking for:

array_splice($a, 1, 0, array('c', 'd'));
KARASZI István
  • 29,989
  • 8
  • 97
  • 120