I have this data (columns are depth, name, value, the order is correct):
0, id, 12
0, name, Name
0, pages,
1, 0, Page 1
1, 1, Page 2
1, 2, Page 3
0, items,
1, 0,
2, id, 4
2, title, Example Items
And I'm trying to produce an array structure like this from it:
Array
(
[id] => 12
[name] => Name
[pages] => Array
(
[0] => Page 1
[1] => Page 1
[2] => Page 1
)
[items] => Array
(
[0] => Array
(
[id] => 4
[title] => Example Item
)
)
)
Every attempt I've tried so far has failed, I just cant seem to get my head round the logic. Any help would be appreciated. Thanks.
parentI see no way for you to know howPage 1is a child ofPagesexcept order, which isn't guaranteed (unless there's also an ordering column you don't mention). You might want to look at Binary Trees which have well defined algorithms to help with cases like this (and allow you to store multi-dimensional data in a single table) – Rudu Jan 9 '12 at 17:46