11

我有一个 JSONArray 如下所示

{
    "output": [
        "a",
        "b",
        "c",
        "d",
        "e"
    ]
}

我需要在 php.ini 中查找上述数组中是否存在“e”。有人可以帮我解决这个问题吗?

4

1 回答 1

14
$array = json_decode($json, true);
if (in_array('e', $array['output'])) {
    ...
}
于 2012-11-16T07:27:32.637 回答