douzhang3822 2013-06-13 16:26
浏览 38
已采纳

PHP:从嵌套关联数组中查找动态元素

I'm working on a function that looks like this:

public function myfunction($mainArr, $keys) {
    // $mainArr: a nested associative array
    // $keys: a simple array of strings, example: array('string_1', 'string_2', 'string_3')
    $totalKeys = count(keys);
    if(totalKeys == 1) {
        return mainArr[keys[0]];
    } else if(totalKeys == 2) {
        return mainArr[keys[0]][keys[1]];
    } else if(totalKeys == 3) {
        return mainArr[keys[0]][keys[1]][keys[2]];
    } else if(totalKeys == 4) {
        return mainArr[keys[0]][keys[1]][keys[2]][keys[3]];
    } else if(totalKeys == 5) {
        return mainArr[keys[0]][keys[1]][keys[2]][keys[3]][keys[4]];
    }
    // the same pattern continues..
}

I want to change this function into something more dynamic rather than a big list of "if" conditions, is it possible somehow?

  • 写回答

1条回答 默认 最新

  • dousuo2812 2013-06-13 16:37
    关注

    You can do it for example this way:

    function get_value(array $source, array $keys) {
        foreach ($keys as $key) {
            if (isset($source[$key])) {
                $source = $source[$key];
            }
            else {
                return null;
            }
        }
    
        return $source;
    }
    

    If $keys describes an invalid path inside $source then null will be returned.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?