gpt4 book ai didi

php - 如何在 PHP 中从 JSON 中获取单个字段

转载 作者:可可西里 更新时间:2023-11-01 13:43:23 24 4
gpt4 key购买 nike

我的 JSON 看起来像这样。我如何获得特定字段,例如“标题”还是“网址”?

{
"status":1,
"list":
{
"204216523":
{"item_id":"204216523",
"title":"title1",
"url":"url1",
},
"203886655":
{"item_id":"203886655",
"title":"titl2",
"url":"url2",
}
},"since":1344188496,
"complete":1
}

我知道 $result = json_decode($input, true); 应该用于获取 $result 中的可解析数据,但我如何从中获取各个字段$结果?我需要遍历所有成员(在本例中为 2 个)并从中获取一个字段。

最佳答案

json_decode() 将 JSON 数据转换为关联数组。因此,要从您的数据中获取标题和网址,

foreach ($result['list'] as $key => $value) {
echo $value['title'].','.$value['url'];
}

关于php - 如何在 PHP 中从 JSON 中获取单个字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11906632/

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