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
        (
            [animal] => Cats
            [total] => 6
        )

)

the output i need is:
Dogs 5
Cats 9

I need to add the total but keep just one animal if its already there. can
someone please help? i been stuck for two days. i appreciate it.

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

Reply via email to