我搜索了很多,我發現了很少的方法來查找我的JSON數組的長度。我曾嘗試:查找json數組中的對象數
count
json.length
但這些返回1,而不是實際的長度。我想用PHP顯示它。
我的JSON是:
$huge = '[{"location":[{"building":["Default Building"],"name":"Default Location"}],"name":"Default Organization"},{"location":[{"building":["test_loc1_building1","test_loc1_building2"],"name":"test location1"},{"building":["test_loc2_building2"],"name":"test location2"}],"name":"test Organization"}]';
我如何才能找到我的JSON數組對象的數量?
JSON是一種序列化格式,那麼對它進行反序列化和檢查呢? – 2013-04-08 06:24:09
在這裏你有另一個解決方案,而不使用json_decode。 HTTP://計算器。com/questions/28772904/convert-json-string-to-array-without-json-decode – 2016-03-10 09:19:11
在這裏你有另一個解決方案,而不使用json_decode:http://stackoverflow.com/questions/28772904/convert-json-string-to -array-without-json-decode – 2016-03-10 09:20:29