2024-10-13 08:18:03
需要先将json转换成数组,然后才能循环。
json是字符串,不能直接循环。使用 json_decode($jsonstring, true) 可以将格式正确的json字符串转换成关联数组。
需要注意,该函数只能处理UTF-8编码的json字符。
实例代码:
<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
var_dump(json_decode($json));
var_dump(json_decode($json, true));
?>
以上实例将会输出:
object(stdClass)#1 (5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
array(5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
?>
2024-10-13 16:20:14
2024-10-13 18:48:27
2024-10-13 09:00:25
2024-10-13 15:51:39
灌水可耻