PHP的Cannot use object of type stdClass as array in错误的解决办法
程序员文章站
2022-04-08 19:45:37
...
这篇文章主要介绍了关于PHP错误Cannot use object of type stdClass as array in错误的解决办法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
很多人在PHP输出一个二维数组的时候出现“Fatal error: Cannot use object of type stdClass as array in……”。这篇文章主要介绍了该错误的解决办法,需要的朋友可以参考下
很多人在PHP输出一个二维数组的时候出现“Fatal error: Cannot use object of type stdClass as array in……”。
解决办法分析如下:
现有这样一个二维数组:
Array ( [0] => stdClass Object ( [id] => 1 [title] => 招聘信息 [size] => 300*150 [pic] => ./upload/20140602093535.jpg [state] => 0 ) [1] => stdClass Object ( [id] => 2 [title] => 首页头条 [size] => 300*150 [pic] => ./upload/20140602093443.jpg [state] => 0 ) )
输出开始写的方法是:$pic[0][title]
结果就出现上面的错误。
其实,数组中是返回的是一个对象,不能直接用[]来显示,正确的输出方法是:$pic[0]->title
问题解决!
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
thinkphp在php7环境下提示Cannot use ‘String’ as class name as it is
reserved的解决方法
以上就是PHP的Cannot use object of type stdClass as array in错误的解决办法的详细内容,更多请关注其它相关文章!
上一篇: Python编程中以客户端的形式同HTTP服务交互
下一篇: 为什么 Python 不支持函数重载?
推荐阅读
-
PHP JSON出错:Cannot use object of type stdClass as array解决方法
-
php下关于Cannot use a scalar value as an 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教程
-
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下关于Cannot use a scalar value as an array的解决办法_php技巧