RE: [PHP] removing an array from a compound array

2009-07-02 Thread Ford, Mike
-Original Message- From: Andres Gonzalez [mailto:and...@packetstorm.com] Sent: 02 July 2009 00:46 To: php-general@lists.php.net Subject: [PHP] removing an array from a compound array I have a compound array, that is, an array of an array of an array, etc, that is about 5 arrays

Re: RE: [PHP] removing an array from a compound array

2009-07-02 Thread zhoo
yes,i agree with Mike's method. 2009-07-02 zhoo 发件人: Ford, Mike 发送时间: 2009-07-02 15:12:20 收件人: Andres Gonzalez; php-general@lists.php.net 抄送: 主题: RE: [PHP] removing an array from a compound array -Original Message- From: Andres Gonzalez [mailto:and...@packetstorm.com

Re: [PHP] removing an array from a compound array

2009-07-02 Thread Andres Gonzalez
] Sent: 02 July 2009 00:46 To: php-general@lists.php.net Subject: [PHP] removing an array from a compound array I have a compound array, that is, an array of an array of an array, etc, that is about 5 arrays deep. I currently search thru all of these arrays, and based on some criteria, I want

[PHP] removing an array from a compound array

2009-07-01 Thread Andres Gonzalez
I have a compound array, that is, an array of an array of an array, etc, that is about 5 arrays deep. I currently search thru all of these arrays, and based on some criteria, I want to delete one of the arrays (along with all of its sub-arrays) in the middle. What is the easiest way to delete