gpt4 book ai didi

php - 帮助解码 JSON

转载 作者:搜寻专家 更新时间:2023-10-31 20:51:57 24 4
gpt4 key购买 nike

我正在尝试从这段 json 中获取“screenshotUrls”字符串:

$request_url = 'http://itunes.apple.com/search?term=ibooks&country=us&entity=software&limit=1';
$json = file_get_contents($request_url);
$decode = json_decode($json, true);

echo $decode['results'][0]['screenshotUrls'];

但我只得到文本“Array”

我做错了什么?

最佳答案

尝试

var_dump($decode['results'][0]['screenshotUrls']);

如果您从 PHP 获得“Array”输出,这意味着您正在尝试回显一个实际数组(或字符串“Array”...)。这意味着您需要获取特定的索引值。

关于php - 帮助解码 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6574871/

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