> Hello,
> how can I complete remove an item out of an array ?
> I tried unset() as well as setting the value to null.
>
> Both result in the value being null but not the item being deleted.

As far as I know, this is not possible. You can, however, create a new array
and copy all values except the deleted one from the old array, for example
with two array_slice() calls.

Argh, I'm not used to clicking reply and having to change the recipients
adress =)

Kristian


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to