Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
is this a csv or where the data comes from? – Antonio Laguna Jan 9 '12 at 17:44
Unless you add a column parent I see no way for you to know how Page 1 is a child of Pages except 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
Sorry yes, I should clarify, the order is fixed and correct, so it is possible to work out the full hierarchy. – Jack Sleight Jan 9 '12 at 19:44

1 Answer

up vote 2 down vote accepted

You can accomplish this with a bit of reference trickery. If you have your CSV input converted into a list like:

$in = array_map("str_getcsv", explode("\n", $table));

Then you can traverse it like:

$data = array();

foreach ($in as $row) {
    list ($depth, $key, $value) = $row;

    $r = & $data;  // start from base array, then submerge $n last keys
    while ($depth--) { end($r); $r = & $r[key($r)]; }

    $r[$key] = $value;
}

At least works for your example:

Array
(
    [id] => 12
    [name] => Name
    [pages] => Array
        (
            [0] => Page 1
            [1] => Page 2
            [2] => Page 3
        )

    [items] => Array
        (
            [0] => Array
                (
                    [id] => 4
                    [title] => Example Items
                )

        )

)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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