您的位置:首页 > 编程语言 > PHP开发

php json_decode 造成的诡异问题

2016-08-25 16:38 423 查看
出现

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)

}

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: