Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an array with 3 values:

$b = array('A','B','C');

This is what the original array looks like:

Array ( [0] => A [1] => B [2] => C )

I would like to insert a specific value(For example, the letter 'X') at the position between the first and second key, and then shift all the values following it down one. So in effect it would become the 2nd value, the 2nd would become the 3rd, and the 3rd would become the 4th.

This is what the array should look like afterward:

Array ( [0] => A [1] => X [2] => B [3] => C )

How do I insert a value in between two keys in an array using php?

share|improve this question
2  

1 Answer

array_splice() is your friend:

$arr = array('A','B','C');
array_splice($arr, 1, 0, array('X'));
// $arr is now array('A','X','B','C')

This function manipulates arrays and is usually used to truncate an array. However, if you "tell it" to delete zero items ($length == 0), you can insert one or more items at the specified index.

Note that the value(s) to be inserted have to be passed in an array.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.