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.

I have some troubles with an array. I have one array that I want to modify like below. I want to remove element (elements) of it by index and then re-index array. Is it possible?

$foo = array(

    'whatever', // [0]
    'foo', // [1]
    'bar' // [2]

);

$foo2 = array(

    'foo', // [0], before [1]
    'bar' // [1], before [2]

);
share|improve this question

6 Answers

up vote 53 down vote accepted
unset($foo[0]); // remove item at index 0
$foo2 = array_values($foo); // 'reindex' array
share|improve this answer
4  
This is exactly what I wanted to post, +1. – Michiel Pater Mar 7 '11 at 9:07
array_splice($array, 0, 1);

http://php.net/manual/en/function.array-splice.php

share|improve this answer

You better use array_shift(). That will return the first element of the array, remove it from the array and re-index the array. All in one efficient method.

share|improve this answer

Try with:

$foo2 = array_slice($foo, 1);
share|improve this answer
This only works for the first element and not an arbitrary one. – Felix Kling Mar 7 '11 at 9:29
array_splice($array, array_search(array_value,$array),1);
share|improve this answer
where array_value will be 'whatever' – user1092222 Feb 20 at 9:45
Unset($array[0]); 

Sort($array); 

I don't know why this is being downvoted, but if anyone has bothered to try it, you will notice that it works. Using sort on an array reassigns the keys of the the array. The only drawback is it sorts the values. Since the keys will obviously be reassigned, even with array_values, it does not matter is the values are being sorted or not.

share|improve this answer
2  
even if the keys will be reassigned, in the correct answer, the initial order will be kept. – s3v3n Apr 29 '11 at 6:35

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.