up vote 55 down vote favorite
11
share [g+] share [fb]

does anyone know an easy way to delete an element from a php array? I mean so that foreach($array) no longer includes that element. I thought that setting it to null would do it, but apparently not.

link|improve this question

13  
Don't you think you should have choosen Stefan Gehrig answer stackoverflow.com/questions/369602/… ?! – Marco Demaio May 27 '11 at 14:17
1  
is this question for real ? it's right there in the manual php.net/manual/en/function.unset.php – danip Jan 13 at 20:52
feedback

6 Answers

up vote 53 down vote accepted

You use unset:

<?php
$x = array(1, 2);
unset($x[0]);
var_dump($x);
?>
link|improve this answer
feedback

It should be noted that unset() will keep indexes untouched, which is what you'd expect when using string indexes (array as hashtable), but can be quite surprising when dealing with integer indexed arrays:

$array = array(0, 1, 2, 3);
unset($array[2]);
var_dump($array);
/* array(3) {
  [0]=>
  int(0)
  [1]=>
  int(1)
  [3]=>
  int(3)
} */

$array = array(0, 1, 2, 3);
array_splice($array, 2, 1);
var_dump($array);
/* array(3) {
  [0]=>
  int(0)
  [1]=>
  int(1)
  [2]=>
  int(3)
} */

So array_splice() can be used if you'd like to normalize your integer keys. Another option is using array_values() after unset():

$array = array(0, 1, 2, 3);

unset($array[2]);
$array = array_values($array);
var_dump($array);
/* array(3) {
  [0]=>
  int(0)
  [1]=>
  int(1)
  [2]=>
  int(3)
} */
link|improve this answer
great answer. Thank you – Radek Jan 14 '11 at 4:59
The perfect explanation! +1 – Marco Demaio May 27 '11 at 14:15
7  
Much better answer than the accepted one. – Laurent Aug 24 '11 at 4:15
+1 for a great answer (and because php.net's manual is currently offline and this proved an perfect syntax resource ;). It solved my problem of exporting integer-keyed arrays with json_encode(): unset() caused it to be encoded as an object with integer keys (rather than a simply un-indexed array) for the very reason you explain! – msanford Jan 23 at 16:20
feedback
  // our initial array  
   $arr = array("blue", "green", "red", "yellow", "green", "orange", "yellow", "indigo", "red");  
  print_r($arr);

  // remove the elements who's values are yellow or red  
   $arr = array_diff($arr, array("yellow", "red"));
  print_r($arr);  

This is the output from the code above:

Array ( [0] => blue [1] => green [2] => red [3] => yellow [4] => green [5] => orange [6] => yellow [7] => indigo [8] => red ) Array ( [0] => blue [1] => green [4] => green [5] => orange [7] => indigo )

Now, array_values() will reindex a numerical array nicely, but will remove all key strings from the array and replace them with numbers. If you need to preserve the key names (strings), or reindex the array if all keys are numerical, use array_merge():

$arr = array_merge(array_diff($arr, array("yellow", "red")));
print_r($arr);

outputs

Array ( [0] => blue [1] => green [2] => green [3] => orange [4] => indigo )

link|improve this answer
feedback
unset($array[$index]);
link|improve this answer
feedback

Also, for a named element:

unset($array["elementName"]);

link|improve this answer
tested your code, it is not working. – zac1987 Jun 8 '11 at 19:15
$a = array("A"=>1, "B"=>2, "C"=>"a"); print_r($a); unset($a["B"]); print_r($a); gives (formatted): Array ( [A] => 1 [B] => 2 [C] => a ), Array ( [A] => 1 [C] => a ) – DefenestrationDay Jun 9 '11 at 1:50
8  
And, please, never ever say "it is not working" again. – Lightness Races in Orbit Aug 2 '11 at 14:09
Why can't we downvote comments like from his "Not Working"ness? – ProfK Jan 16 at 3:42
feedback
$key = array_search($needle,$array);
if(isset($key)){
    unset($array[$key]);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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