Create an associative array from a string

折月煮酒 提交于 2019-12-13 09:55:14

问题


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:


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);


来源:https://stackoverflow.com/questions/32647745/create-an-associative-array-from-a-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!