>
>
> 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();

--Kris

Reply via email to