douwu7563 2015-11-17 02:52
浏览 60
已采纳

从PHP中的数组中获取JSON值

I have the following JSON

      [
           {
          "part_number": {
             "id": "1",
             "text": "962-00031-17A004"
          },
          "categoria": null,
          "codigo_cti": "",
          "fabricante": null,
          "modelo": null,
          "numero_serie": "",
          "obs": ""
       }
    ]

And I use the code bellow to collect data from it. If I select to extract obs, it works fine. I would like to know how can I collect the text and ID from part_number.

$produtos = json_decode($_POST['produtos'], true);  

foreach($produtos as $produto){
    echo $produto["obs"]; //WORKS FINE
    echo $produto["part_number"]["text"]; //DOES NOT WORK
}
  • 写回答

1条回答 默认 最新

  • dqoqnmb163241 2015-11-17 02:58
    关注

    Turn it into an object and not array first - its easier and Object Orientated is the way to go.

    Here is a working example;

    $json = '[
           {
    
          "part_number": {
    
             "id": "1",
    
             "text": "962-00031-17A004"
    
          },
    
          "categoria": null,
    
          "codigo_cti": "",
    
          "fabricante": null,
    
          "modelo": null,
    
          "numero_serie": "",
    
          "obs": ""
    
       }
    
    ]';
    
    $produtos = json_decode($json, false);  
    
    
    foreach($produtos as $produto){
       echo $produto->part_number->id;
    }
    

    展开全部

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部