On Wed, Aug 15, 2012 at 10:29 PM, Kris Craig <kris.cr...@gmail.com> wrote:
>>
>> Btw, deleting all values (not just the first) is also very easy currently:
>>
>> foreach (array_keys($array, $delValue) as $key) {
>>     unset($array[$key]);
>> }
>>
>
> Even easier still, just do this:
>
> $array_var = array();

It's often overlooked, but array_keys has a second parameter that only
returns the keys for a certain value: http://php.net/array_keys ;) So
no, that does not clean off the whole array.

Nikita

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to