Jump to content

[SOLVED] Quick array question


KevinM1

Recommended Posts

Do you want to delete a cell from an array by a given [b]key[/b] or [b]value[/b]?

If it's by key, just use the [url=http://www.php.net/manual/en/function.unset.php]unset()[/url] function. Example: unset($array['remove_me']);
If it's by value, use [url=http://www.php.net/manual/en/function.array-search.php]array_search()[/url] first, and then unset().

Orio.

Orio.
Will the unset array elements be physically removed from the array, or merely turned into null values?  I ask because I plan on using a foreach on the modified array after the proper elements are removed, and thus I don't want to have any null-value gaps in the datastructure.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.