Dynamic Array traversal in PHP

后端 未结 2 389
攒了一身酷
攒了一身酷 2020-12-21 10:27

I want to build a hierarchy from a one-dimensional array and can (almost) do so with a more or less hardcoded code. How can I make the code dynamic?

Perhaps with

相关标签:
2条回答
  • 2020-12-21 11:19

    I THINK you want:

    function array_traverse($array, $key = null) {
        $out = (string) $key;
        if (isset($array[$key])) {
            $out = array_traverse($array, $array[$key]) . '/' . $out;
        }
        return $out;
    }
    

    Or, for a non-recursive method:

    function array_traverse($array, $key = null) {
        $out = (string) $key;
        while(isset($array[$key])) {
            $out = $array[$key] . '/' . $out;
            $key = $array[$key];
        }
        return $out;
    }
    
    0 讨论(0)
  • 2020-12-21 11:19

    Yes, I would say isset() is the way to go:

    traverse($array, $value) {
        $result = array();
        while (isset($array[$value])) {
            array_unshift($result, $value);
            # or just $result[] = $value if you want to append
            # instead of prepending
            $value = $array[$value];
        }
        return $result;
        # or return implode('/', traverse(array(...))),
        # but I always prefer array return types in such cases:
        # they are much more flexible to the users of the function
    }
    
    # BTW: Using implode will avoid having an unnecessary
    # leading/trailing delimiter (slash in this case)
    echo implode('/', traverse(array(...)));
    
    0 讨论(0)
提交回复
热议问题