JSON出错:Cannot use object of type stdClass as array解决方法php再调用json_decode从字符串对象生成json对象时,如果使用[]操作符取数据,会得到上面的错误.产生原因:$res = json_decode($res); $res['key']; //把 json_decode() 后的对象当作数组使用.解决方法(2种):1.使用 json_decode($d, true).就是使json_decode 的第二个变量设置为 true. 2…