下面一起來(lái)看看在php開(kāi)發(fā)中碰到PHP Fatal error: Cannot use object of type stdClass as array in錯(cuò)誤問(wèn)題的解決辦法吧。
普通的數(shù)組出現(xiàn)如下錯(cuò)誤
代碼如下:
<?php
Array (
[0] => stdClass Object (
[id] => 1
[title] =>精彩推薦
[size] => 280*150
[pic] => ./uploadfiles/201402160422.jpg
[state] => 0 )
[1] => stdClass Object (
[id] => 2
[title] =>企業(yè)要聞
[size] => 280*150
[pic] => ./uploadfiles/201402160533.jpg
[state] => 0 )
)
?>
后來(lái)百度搜索一個(gè)關(guān)于差不多的問(wèn)題,但對(duì)方是json數(shù)據(jù)
php再調(diào)用json_decode從字符串對(duì)象生成json對(duì)象時(shí),如果使用[]操作符取數(shù)據(jù),會(huì)得到下面的錯(cuò)誤:
Cannot use object of type stdClass as array
產(chǎn)生原因:
代碼如下:
$res = json_decode($res);
$res['key']; //把 json_decode() 后的對(duì)象當(dāng)作數(shù)組使用。
解決方法(2種):
1、使用 json_decode($d, true)。就是使json_decode 的第二個(gè)變量設(shè)置為 true。
2、json_decode($res) 返回的是一個(gè)對(duì)象, 不可以使用 $res['key'] 進(jìn)行訪問(wèn), 換成 $res->key 就可以了。
好了現(xiàn)在回到我們?cè)瓎?wèn)題發(fā)現(xiàn)
原來(lái)是不能直接用[]來(lái)顯示導(dǎo)致的,上面代碼的輸出是用的:$pic[0][title],改為$pic[0]->title后正常了
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄