Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How do you reindex an array in PHP?
PHP reindex array?

I have an array where I delete an element:

unset($array[2]);

After that, the element is gone, but the indices are messed up. I want to indices to be reordered as well. Right now, it has 0,1,3,4,5,....the 2 is missing now. I also used var_dump($array), made no change.

Ideas?

share|improve this question
1  
Err: Better How do you reindex an array in PHP? – hakre Jul 28 '12 at 14:17

marked as duplicate by hakre, PeeHaa 埽, rdlowrey, j0k, Jürgen Thelen Jul 29 '12 at 10:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

Try array_values:


unset($array[2]);
$newArr = array_values($yourArray); //after unset will show array indexed linearly
print_r($newArr);

share|improve this answer

unset will simply remove the reference to element 2, as in the case. That is why, you don't have index 2 anymore.

What you have to do is implement a function to shift every element left one position, starting with the element one beyond the index from which you want the shift.

After that, unset the very last element.

share|improve this answer

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