PHP“Cannot use object of type stdClass as array”
程序员文章站
2022-06-17 12:06:18
...
php再调用json_decode从字符串对象生成json对象时,如果使用[]操作符取数据,会得到下面的错误
错误:
Cannot use object of type stdClass as array
产生原因:
错误:
Cannot use object of type stdClass as array
产生原因:
+展开
-PHP
$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 就可以了。
参考手册:json_decode
Return Values:Returns an object or if the optional assoc parameter is TRUE, an associative array is instead returned.
返回值默认是JSON对象,当第二个可选参数是TRUE的时候,则返回的是数组
推荐阅读
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
PHP警告Cannot use a scalar value as an array的解决方法_PHP教程
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
php下关于Cannot use a scalar value as an array的解决办法
-
PHP JSON出错:Cannot use object of type stdClass as array解决方法
-
PHP警告Cannot use a scalar value as an array的解决方法
-
PHP中把stdClass Object转array的几个方法
-
php下关于Cannot use a scalar value as an array的解决办法
-
[VUE ERROR] Invalid default value for prop "slides": Props with type Object/Array must use a factory function to return the default value