PHP错误Cannot use object of type stdClass as array in
PHP错误Cannot use object of type stdClass as array in
今天在PHP输出一个二维数组的时候,出现了“Fatalerror:CannotuseobjectoftypestdClassasarrayin……”。
今天在PHP输出一个二维数组的时候,出现了“Fatal error: Cannot use object of type stdClass as array in……”。
这个二维数组是这样的:
Array (
[0] => stdClass Object (
[id] => 1
[title] => 首页招聘
[size] => 297*140
[pic] => ./upload/20130302093535.jpg
[state] => 0 )
[1] => stdClass Object (
[id] => 2
[title] => 首页领队
[size] => 297*140
[pic] => ./upload/20130302093443.jpg
[state] => 0 )
)
输出开始写的方法是:$pic[0][title]
结果就出现上面的错误。
其实,数组中是返回的是一个对象,不能直接用[]来显示,正确的输出方法是:$pic[0]->title
这里就是记录一下。
关键词:PHP
相关阅读:
赞助商链接:
0
0