and what about array_slice(), array_splice(), array_pop() or
array_unshift()?
Please read the corresponding pages of the manual!
----- Original Message -----
From: "Christian Reiniger" <[EMAIL PROTECTED]>
To: "Jason Caldwell" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
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('100'=>'jibberjabber','200'=>'morejibberjabber','0'=>'----');
var_dump ($myArray);
echo "<br>";
if(isset($myArray[0])) {
unset ($myArray [0]);
}
var_dump ($myArray);
Outputs:
array(3) { [100]=> string(12) "jibberjabber" [200]=> string(16)
"morejibberjabber" [0]=> string(4) "----" }
array(2) { [100]=> string(12) "jibberjabber" [200]=> string(16)
"morejibberjabber" }
-> index 0 is gone.
--
Christian Reiniger
LGDC Webmaster (http://lgdc.sunsite.dk/)
/* you are not expected to understand this */
- from the UNIX V6 kernel source
--
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]
--
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]