dongzi1209 2018-02-17 21:53
浏览 1084
已采纳

如何在php中读取多级json的值?

I have the following code to read a Json and store some values into an array:

<?php
$json = '[{
        "provider_id":1,
        "nro_chart":1,
        "control": {
            "color": "blue",
            "total_value": 21.5,
            "car_id": 421118
        }
    },
    {
        "control": {
            "color": "green",
            "total_value": 25,
            "car_id": 421119
        }
    },
    {
        "control": {
            "color": "red",
            "total_value": 18,
            "car_id": 421519
        }
    }
]';

$j = json_decode($data);
$result = [];
foreach ($j as $item) {
    array_push($result,[
        'total_value' => $item->control->total_value,
        'car_id' => $item->control->car_id
    ]);
}

Now I need to get the two values that are outside of "control" like "provider_id" and "nro_chart" inside a variable.

  • 写回答

3条回答 默认 最新

  • duanjiuhong5843 2018-02-17 21:58
    关注

    The JSON contains an array of one element, so to access provider_id and nro_chart, get the first element and directly access the properties:

    $j = json_decode($json);
    var_dump($j[0]->provider_id); // /Applications/MAMP/htdocs/trello/up.php:28:int 1
    var_dump($j[0]->nro_chart); // /Applications/MAMP/htdocs/trello/up.php:28:int 1
    

    Demo

    Or, within that same foreach loop:

    foreach ($j as $item) {
        array_push($result,[
            'total_value' => $item->control->total_value,
            'car_id' => $item->control->car_id
        ]);
        if (isset($item->provider_id)) {
            var_dump($item->provider_id);
        }
        if (isset($item->nro_chart)) {
            var_dump($item->nro_chart);
        }
    }
    

    Be sure to check if the property is set for that element with isset() first.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题