dtsc14683 2017-12-03 02:42
浏览 69
已采纳

Echo JSON数组特定元素

I'm confused about how I can echo a certain element in my JSON array.

Under time series (1min), I would like to output 1. open. In order to give me the actual value for it.

So far, i'm only able to output the complete array.

Link to JSON file is: https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo

Also, i'm using wordpress.

Here is the code i'm using:

$request = wp_remote_get('https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo');

if( is_wp_error( $request ) ) {
    return false; // Bail early
}

$body = wp_remote_retrieve_body( $request );

$data = json_decode($body, true);

echo $body;

</div>
  • 写回答

2条回答 默认 最新

  • drby30217 2017-12-03 02:56
    关注

    You got the array, you simply need to loop over it.

    //...
    $data = json_decode($body, true);
    
    foreach ($data['Time Series (1min)'] as $date => $row) {
        echo $date.' => '.$row['1. open'].'<br>';
    }
    

    Its a little tricky if you want just one value as its not the greatest structure, the date being the key. But you can use array_values() function to fix that.

    $min = array_values($data['Time Series (1min)']);
    
    echo $min[0]['1. open']; //84.2000
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵