Re: [PHP] Re: Removing an Array Element

2001-10-25 Thread Papp Gyozo
TECTED]> Sent: Thursday, October 25, 2001 11:03 AM Subject: Re: [PHP] Re: Removing an Array Element On Wednesday 24 October 2001 23:33, Jason Caldwell wrote: > That won't work, as that will only unset the *value* not the *element*. Try again: $myArray = array(

Re: [PHP] Re: Removing an Array Element

2001-10-25 Thread Christian Reiniger
On Wednesday 24 October 2001 23:33, Jason Caldwell wrote: > That won't work, as that will only unset the *value* not the *element*. Try again: $myArray = array('100'=>'jibberjabber','200'=>'morejibberjabber','0'=>''); var_dump ($myArray); echo ""; if(isset($m

[PHP] Re: Removing an Array Element

2001-10-24 Thread Jason Caldwell
That won't work, as that will only unset the *value* not the *element*. I think I have to do the following as there isn't a prebuilt PHP array function that does what I need -- the following should work fine: $myArray = array('100'=>'jibberjabber','200'=>'morejibberjabber','0'=>''); if(isse

[PHP] Re: Removing an Array Element

2001-10-24 Thread Julio Nobrega Trabalhando
>Basically, I just want to know if the Key is set, and if so -- remove it... unset();... -- Julio Nobrega A hora está chegando: http://toca.sourceforge.net "Jason Caldwell" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > How can I remove an Array Element fro