vote up 0 vote down star

Under what circumstances would

$array[$index] = $element;

and

unset($array[$index]);
$array[$index] = $element;

be different?

Assuming I am not using any references in my array, are these logically equivalent?

flag

61% accept rate

4 Answers

vote up 4 vote down

If $index isn't numeric second variant would always append element to the end of array, so the order of keys will be changed.

link|flag
vote up 3 vote down
unset($array[$index]);

would raise an E_NOTICE if $index is not found within $array. Other than that it looks the same.

link|flag
vote up 3 vote down

The order is changed if you first remove a key and then add it again:

$arr = array("foo1" => "bar1", "foo2" => "bar2");
$arr["foo1"] = "baz";
print_r($arr);


$arr = array("foo1" => "bar1", "foo2" => "bar2");
unset($arr["foo1"]);
$arr["foo1"] = "baz";
print_r($arr);

Output:

Array
(
    [foo1] => baz
    [foo2] => bar2
)

Array
(
    [foo2] => bar2
    [foo1] => baz
)
link|flag
vote up 0 vote down

if you need to know is exist there before assigning (isset) is useful use "unset", but these simply add a step to "unset".

for example:

if ($array[$index]=="a")
   unset($array[$index]);

...

if (!isset($array[$index]))
   $array[$index] = $element;
link|flag

Your Answer

Get an OpenID
or

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