dongxuan2015 2016-04-03 04:03
浏览 8
已采纳

无法从json_decode访问值

I have a json object from a curl get request.

// Curl Stuff
$resp = curl_exec($curl);
{"food": {"id":585897,"foodGroup":"meats","calories":1109,"foodTier":30}}

I saved it in a variable with json_decode

$data = json_decode($resp, TRUE);

I've tried accessing the data in a couple ways but I get no response

echo $data[0][1];
echo $data[0]['id'];

Also if someone can point me in the right direction of looping through this data I would appreciate that.

  • 写回答

1条回答 默认 最新

  • douqin6785 2016-04-03 04:10
    关注

    With the true parameter in your json_decode, you have associative array, so it must be:

    echo $data['food']['id'];
    

    Get the id by numeric:

    $da = array();
    foreach($data as $key=>$val){
      $da[$key] = array_values($val);
    }
    print_r($da);
    
    echo $da['food'][0];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥500 高有偿提问!求优化设计微信小程序
  • ¥15 matlab在安装时报错 无法找到入口 无法定位程序输入点
  • ¥15 收益高的广告联盟有哪些
  • ¥15 Android Studio webview 的使用问题, 播放器横屏全屏
  • ¥15 删掉jdk后重新下载,Java web所需要的eclipse无法使用
  • ¥15 uniapp正式环境中通过webapi将本地数据推送到设备出现的跨域问题
  • ¥15 xui建立节点,显示错误
  • ¥15 关于#单片机#的问题:开始、复位、十进制的功能可以实现,但是切换八进制的功能无法实现(按下按键也没有效果),把初始状态调成八进制,也是八进制可以实现但是切换到十进制不行(相关搜索:汇编语言|计数器)
  • ¥15 VINS-Mono或Fusion中feature_manager中estimated_depth是特征的深度还是逆深度?
  • ¥15 谷歌浏览器如何备份抖音网页数据