downloadbooks_2014 2014-01-20 03:47
浏览 21
已采纳

在PHP中循环使用多维数组

I've looked up a bunch of similar examples but still can't seem to figure out how loop through and echo the values from this array. Should be simple, but I'm dense. Help is appreciated.

array(2) { ["legend_size"]=> int(1) ["data"]=> array(2) { ["series"]=> array(2) { [0]=> string(10) "2014-01-17" [1]=> string(10) "2014-01-18" } ["values"]=> array(1) { ["Begin Session"]=> array(2) { ["2014-01-17"]=> int(1073) ["2014-01-18"]=> int(1122) } } } } 

I'm trying to return the int values for the "values" array.

  • 写回答

3条回答 默认 最新

  • doujiao2000 2014-01-20 04:21
    关注

    Given the name of your array is, for the sake of example, $mdarr, and that the construction of the array is going to be roughly the same every time, it is as simple as:

    $values_i_want = $mdarr['data']['values'];
    

    If the values array you are looking for is going to be in different array depths in different cases, recursion combined with type checking will do the trick:

    //returns values array or nothing if it's not found
    function get_values_array($mdarr) {
        foreach ($mdarr as $key => $val) {
            if ($key == 'values') {
                return $val;
            } else if (is_array($val)) {
                return get_values_array($val);
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64