本文介绍了如何在 PHP 中搜索 JSON 数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 JSON 数组
I have a JSON array
{
"people":[
{
"id": "8080",
"content": "foo"
},
{
"id": "8097",
"content": "bar"
}
]
}
如何搜索 8097 并获取内容?
How would I search for 8097 and get the content?
推荐答案
使用json_decode
函数将 JSON 字符串转换为对象数组,然后遍历数组直到找到所需的对象:
Use the json_decode
function to convert the JSON string to an array of object, then iterate through the array until the desired object is found:
$str = '{
"people":[
{
"id": "8080",
"content": "foo"
},
{
"id": "8097",
"content": "bar"
}
]
}';
$json = json_decode($str);
foreach ($json->people as $item) {
if ($item->id == "8097") {
echo $item->content;
}
}
这篇关于如何在 PHP 中搜索 JSON 数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!