dongxia2068 2016-11-20 15:15
浏览 67
已采纳

从带有括号的json数组到变量或mysql

I have this script to display some value from a json file:

<?php 
//read the json file contents
$jsondata = file_get_contents('http://website.com/file.json');
//convert json object to php associative array
$data = json_decode($jsondata, true);
//get the weather details
$icon = $data['weather']['icon'];
//Display variables
echo "icon value: $icon"; ?>

the json file is :

{"coord":{"lon":130.84,"lat":-12.46},"weather":[{"id":501,"main":"Rain","description":"moderate rain","icon":"10n"}],"base":"stations","main":{"temp":21,"pressure":1011,"humidity":100,"temp_min":21,"temp_max":21},"visibility":5000,"wind":{"speed":1.5,"deg":130},"clouds":{"all":90},"dt":1479589200,"sys":{"type":1,"id":8209,"message":0.162,"country":"AU","sunrise":1479501624,"sunset":1479547451},"id":2073124,"name":"Darwin","cod":200}

I need to display the icon value (10n), but my script didn't work... Brackets in weather section give me some trouble...

thanks for your help

  • 写回答

1条回答 默认 最新

  • dongshun7312 2016-11-20 15:20
    关注

    you should access this way

    $icon = $data['weather'][0]['icon'];
    //Display variables
    echo "icon value: $icon"; ?>
    

    output

    icon value: 10n
    

    var_dump will help you to understand structure of array.this is how $data['weather'] looks like.

    //var_dump($data['weather']);
    array (size=1)
      0 => // you forget to access this element first?
        array (size=4)
          'id' => int 501
          'main' => string 'Rain' (length=4)
          'description' => string 'moderate rain' (length=13)
          'icon' => string '10n' (length=3)
    

    weather is a array.so you should access nth element first.in this case first index $data['weather'][0] then you can access icon

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

报告相同问题?

悬赏问题

  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥30 自适应 LMS 算法实现 FIR 最佳维纳滤波器matlab方案
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动