vote up 2 vote down star

I know there are a lot of smart people, so prove me right!

I want to combine arrays where similar named keys merge together to form a single array. See example:

[Bob] => Array
(
    [BobsDetails] => Array
    (
       [Title] => Mr
    )
)

[Bob] => Array
(
    [BobsDetails] => Array
    (
         [Surname] => Smith
     )
)

How do I end up with ONE array that looks like:

[Bob] => Array
(
    [BobsDetails] => Array
        (
            [Title] => Mr
            [Surname] => Smith
        )
)

Thanks in advance guys

PS I dont think it is as simple as array_merge... ;(

EDIT Made it easier to read

EDIT Sorted. Thanks for the help. array_merge_recursive worked

flag
1  
I think renaming your question to better identify the content would be a good idea - especially for people searching the archives. – sangretu Jul 20 at 17:53

1 Answer

vote up 6 vote down check

I believe you just have to array merge $array['Basic'] instead of just $array;

Actually, if you use array_merge_recursive() on $array it will work. (Check for recursive versions of common functions for multi-dimensional arrays)

link|flag
So yeah, it is as simple as array_merge(). :P – Chacha102 Jul 20 at 17:49
api.cakephp.org/view_source/set/#l-39 – deizel Jul 20 at 17:51
Thanks my love. And Chaacha102: Goddamn you. – David G Jul 22 at 8:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.