from the "unset" documentation on php.net

// destroy a single variable
unset ($foo);

// destroy a single element of an array
unset ($bar['quux']);

// destroy more than one variable
unset ($foo1, $foo2, $foo3);




> -----Original Message-----
> From: andreas (@work) [mailto:[EMAIL PROTECTED]]
> Sent: Monday, February 19, 2001 00:50
> To: [EMAIL PROTECTED]
> Subject: [PHP] array
> 
> 
> hi,
> 
> is there a function to delete an item of an array
> 
> "1","7","14","33","99","A1","A12"
> 
> id like to delete the "33"
> 
> 
> thank you
> 
> andreas
> 
> 
> 

-- 
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