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?
|
|
Under what circumstances would
and
be different? Assuming I am not using any references in my array, are these logically equivalent?
|
||
|
|
|
|
If $index isn't numeric second variant would always append element to the end of array, so the order of keys will be changed. |
||
|
|
|
|
would raise an E_NOTICE if $index is not found within $array. Other than that it looks the same. |
||
|
|
|
|
The order is changed if you first remove a key and then add it again:
Output:
|
||
|
|
|
|
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:
|
||
|
|