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.

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

报告相同问题?

悬赏问题

  • ¥15 无源定位系统的时差估计误差标准差
  • ¥15 请问这个代码哪里有问题啊
  • ¥20 python--version在命令端输入结果Python is not defined怎么办?还有pip不是exe格式是不是没安装成功?
  • ¥15 通过GaussianView进行结构微调消除虚频
  • ¥15 调用transformers库
  • ¥15 由于导出的数据名字中带有/,导致Matlab打不开,怎么办?
  • ¥15 新硬盘安装的程序总是崩溃,提示遇到错误
  • ¥15 openpcdet自制数据集评估bev精度和3d精度相同
  • ¥15 excel 上下按钮 显示行
  • ¥20 云卓h12pro 数传问题