bdjhx 发表于 2017-4-2 13:24:39

php json_decode 造成的诡异问题

  出现
Fatal error: Cannot use object of type stdClass as array 


而且这个问题 时隐时现,在频繁刷新时才会出现此问题...


原来是因为
Fatal error: Cannot use object of type stdClass as array



写道

<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';

var_dump(json_decode($json));
var_dump(json_decode($json, true));

?>


The above example will output:


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)
}

 
页: [1]
查看完整版本: php json_decode 造成的诡异问题