Hi!
I've got an array with this structure:

Array
(
[...]
    [37] => VideoLAN
    [38] => VideoLAN\Quick Settings
    [39] => VideoLAN\Quick Settings\Audio
    [40] => VideoLAN\Quick Settings\Interface
    [41] => VideoLAN\Quick Settings\Video
[...]
)

Now i need it to be grouped together like this:

Array
(
[...]
    [n] => Array
        (
            [VideoLAN] => Array
                (
                    [Quick Settings] => Array
                        (
                            [0] => Audio
                            [1] => Interface
                            [2] => Video
                        )

                )

        )
[...]
)


As i'm not that familiar with Set, i ask: is this possible with Set? or 
do i need to do some funky custom looping or any? :(

greets
Andreas
 

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to