试试json_depre
$array = json_depre($data, true);
然后,您将获得一个数组而不是一个对象。
Example#1 json_depre()示例
<?php$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';var_dump(json_depre($json));var_dump(json_depre($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)}


