Re: Removing an element from the middle of an mdlti-dimentsional array

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Yup, thanks.

Also execute:
   $array = array_values(array)
in order to fix the indexes

----- Original Message ----- From: "mike" <mike503@xxxxxxxxx>
To: "Don" <don@xxxxxxxxxxxxx>
Cc: <php-general@xxxxxxxxxxxxx>
Sent: Thursday, August 14, 2008 11:16 PM
Subject: Re: Removing an element from the middle of an mdlti-dimentsional array


Not on the specific sub element. I.e unset($array[2][0])

On Aug 14, 2008, at 8:08 PM, "Don" <don@xxxxxxxxxxxxx> wrote:

Won't unset() destroy the entire array?

"mike" <mike503@xxxxxxxxx> wrote in message
news:071A7FC9-7894-48AB-95B8-A7ECAA81D13E@xxxxxxxxxxxx
Can't you unset() it? Sorry for top posting I'm on an iPhone

On Aug 14, 2008, at 7:30 PM, "Don" <don@xxxxxxxxxxxxx> wrote:

Hi,

Let's say I have the following array:

$myArray = array(array('1','2','3'), array('4','5','6'),
array('7','8','9'),
array('10','11','12'));

How do I remove say the second element?

I have tried: $myArray = array_splice($myArray, 1, 1);

But this seems to remove the second element as well as all the following
elements and I am left with:

$myArray = array(array('1','2','3'));

when I really want:

$myArray = array(array('1','2','3'), array('7','8','9'),
array('10','11','12'));


Thanks,
Don



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


No virus found in this incoming message.
Checked by AVG - http://www.avg.com Version: 8.0.138 / Virus Database: 270.6.3/1611 - Release Date: 8/14/2008 6:20 AM





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux