Re: [PHP] array_merge_recursive

2004-12-10 Thread Richard Lynch
Sebastian wrote: Hi. I am using this array_merge_recursive to merge two arrays, the array looks like this: Array ( [0] = Array ( [animal] = Dogs [total] = 5 ) [1] = Array ( [animal] = Cats [total]

Re: [PHP] array_merge_recursive

2004-12-10 Thread Sebastian
Subject: [PHP] array_merge_recursive Hi. I am using this array_merge_recursive to merge two arrays, the array looks like this: Array ( [0] = Array ( [animal] = Dogs [total] = 5 ) [1] = Array ( [animal] = Cats

Re: [PHP] array_merge_recursive

2004-12-10 Thread Sebastian
: [EMAIL PROTECTED] Sent: Friday, December 10, 2004 2:45 PM Subject: Re: [PHP] array_merge_recursive foreach ($animal_counts as $animal = $total) { echo $animal. ':' .$total. 'br'; } On Fri, 10 Dec 2004 13:51:36 -0500, Sebastian [EMAIL PROTECTED] wrote: actually, what i mean is i need

[PHP] array_merge_recursive

2004-12-10 Thread Sebastian
Hi. I am using this array_merge_recursive to merge two arrays, the array looks like this: Array ( [0] = Array ( [animal] = Dogs [total] = 5 ) [1] = Array ( [animal] = Cats [total] = 3 ) [2] = Array

Re: [PHP] array_merge_recursive

2004-12-10 Thread Craig Slusher
: total animal name : total etc. thanks. - Original Message - From: Sebastian [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 10, 2004 12:24 PM Subject: [PHP] array_merge_recursive Hi. I am using this array_merge_recursive to merge two arrays, the array

[PHP] array_merge_recursive

2002-09-20 Thread Michiel van Wessem
Hello! I'm fairly new to PHP and absolutely new to this mailing list. I subscribed and I'm writing because I observed some strange behavior with array_merge_recursive(). I'm using PHP version 4.1.2. Please look at the following code: $a = array('k' = array('a1')); $b = array('k' =

Re: [PHP] array_merge_recursive

2002-09-20 Thread Kevin Stone
- Original Message - From: Michiel van Wessem [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 20, 2002 10:14 AM Subject: [PHP] array_merge_recursive Hello! I'm fairly new to PHP and absolutely new to this mailing list. I subscribed and I'm writing because I observed some

Re: [PHP] array_merge_recursive

2002-09-20 Thread Michiel van Wessem
20, 2002 10:14 AM Subject: [PHP] array_merge_recursive Hello! I'm fairly new to PHP and absolutely new to this mailing list. I subscribed and I'm writing because I observed some strange behavior with array_merge_recursive(). I'm using PHP version 4.1.2. Please look at the following