这段代码的结果:
for($i = 0; $i <= 7; $i++){ $eachone[] = array ('a' => '1','b' => '2','c' => '3'); $a[] = array($i => $eachone); unset($eachone); } $json_string = json_encode($a); echo $json_string;
是:
[ [ [ { "a": "1","b": "2","c": "3" } ] ],{ "1": [ { "a": "1","c": "3" } ] },{ "2": [ { "a": "1",{ "3": [ { "a": "1",{ "4": [ { "a": "1",{ "5": [ { "a": "1",{ "6": [ { "a": "1",{ "7": [ { "a": "1","c": "3" } ] } ]
你能注意到它是如何跳过第一个数字,这是零吗?问题是:为什么?
你想要json_encode($a,JSON_FORCE_OBJECT).不幸的是,它仅在5.3中添加.
原文链接:https://www.f2er.com/php/137109.html