-3

got a collection of objects which have an item called path, which has a kind of folding set by a string like: $path = '/some/sub/any/path/'

now I need to create an array from that string like:

array(
    'some'=>array(
        'sub'=>array(
            'objects'=>array(
                array('id'=>1),
                array('id'=>4)
            ),
            'any'=>array(
                'path'=>array(
                    'objects'=>array(
                        array('id'=>2),
                        array('id'=>3)
                    )
                )
            )
        )
    )
);

Actually I am looking for the best practice.

Any Idea, how to solve this in PHP?

1

1 Answer 1

0

How about this? The function adds your custom path to the resulting tree and assigns custom value there. Also returns reference to the created node in case you need to modify it later.

function &add_path(&$tree, $path, $value = NULL) {

    if (!is_array($path))
        $path = explode('/', $path);

    $node =& $tree;
    foreach ($path as $step)
        $node =& $node[$step];

    $node = $value;
    return $node;
}

// test
$tree = array();

$c =& add_path($tree, 'a/b/c', 'c');
$c = 'cc';

$d = add_path($tree, 'a/b/d', 'd');
$y = add_path($tree, 'x/y', 'y');

var_dump($tree);
var_dump($c);
var_dump($d);
var_dump($y);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.