PHP JSON出错:Cannot use object of type stdClass as array解决方法
程序员文章站
2022-06-07 22:58:54
php再调用json_decode从字符串对象生成json对象时,如果使用[]操作符取数据,会得到下面的错误:
复制代码 代码如下:
cannot use object...
php再调用json_decode从字符串对象生成json对象时,如果使用[]操作符取数据,会得到下面的错误:
复制代码 代码如下:
cannot use object of type stdclass as array
产生原因:
复制代码 代码如下:
$res = json_decode($res);
$res['key']; //把 json_decode() 后的对象当作数组使用。
解决方法(2种):
1、使用 json_decode($d, true)。就是使json_decode 的第二个变量设置为 true。
2、json_decode($res) 返回的是一个对象, 不可以使用 $res['key'] 进行访问, 换成 $res->key 就可以了。
上一篇: PHP常用正则表达式集锦
下一篇: shell中的各种括号的使用方法
推荐阅读
-
PHP JSON出错:Cannot use object of type stdClass as array解决方法
-
PHP“Cannot use object of type stdClass as array”
-
PHP Fatal error: Cannot use object of type stdClass as array in错误_PHP教程
-
PHP JSON出错:Cannot use object of type stdClass as array解决方法,jsonstdclass_PHP教程
-
Cannot use object of type stdClass as array
-
PHP JSON出错:Cannot use object of type stdClass as array解决方法
-
Cannot use object of type stdClass as array_PHP教程
-
PHP JSON出错:Cannot use object of type stdClass as array解决方法,jsonstdclass
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
PHP Fatal error: Cannot use object of type stdClass as array in错误