我是json数据的新手。我的问题是如何进行循环以将值搜索到json数组中?我的代码在PHP中。例如,我要查找值59。 这是我的json,我已经在使用json_decode:
Array
(
[0] => 58
[1] => Dent_a
[2] => 34
)
Array
(
[0] => 59
[1] => Dent_b
[2] => 33
)
Array
(
[0] =>
[1] =>
[2] =>
)
Array
(
[0] =>
[1] =>
[2] =>
)
我的代码返回空白。
$data= json_decode(json_encode($ages), true);
for ($i=2; $i<(count($data)+2); $i++){
if($data[$i]== '59' ){
print_r("found");
}
}