gpt4 book ai didi

php - 从JSON问题中提取数据

转载 作者:行者123 更新时间:2023-12-03 05:47:50 25 4
gpt4 key购买 nike

我正在尝试从YouTube API获取有关YouTube channel 的一些信息。

这是输出(使用Google的 channel )http://gdata.youtube.com/feeds/api/users/Google?alt=json的示例

我正在使用此JSON:

$json = file_get_contents("http://gdata.youtube.com/feeds/api/users/Google?alt=json");
$data = json_decode($json, true);

我将 var_dump($data);的输出上传到pastebin: http://pastebin.com/CWA7YYGi

我想要得到的是 totalUploadViews中的 yt$statistics

到目前为止,我尝试过的是:
echo $data['yt$statistics']['totalUploadViews'];

但这给了我一个错误: Notice: Undefined index: yt$statistics
不知道我在做什么错,将不胜感激。

最佳答案

yt$statistics本身是父数组的值。尝试

$data['entry']['yt$statistics']['totalUploadViews'];

关于php - 从JSON问题中提取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10915698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com