下面一起來看看在php開發中碰到PHP Fatal error: Cannot use object of type stdClass as array in錯誤問題的解決辦法吧。
普通的數組出現如下錯誤
代碼如下<?php
Array (
[0] => stdClass Object (
[id] => 1
[title] =>精彩推薦
[size] => 280*150
[pic] => ./uploadfiles/201402160422.jpg
[state] => 0 )
[1] => stdClass Object (
[id] => 2
[title] =>企業要聞
[size] => 280*150
[pic] => ./uploadfiles/201402160533.jpg
[state] => 0 )
)
?>
後來百度搜索一個關於差不多的問題,但對方是json數據
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 就可以了。
好了現在回到我們原問題發現
原來是不能直接用[]來顯示導致的,上面代碼的輸出是用的:$pic[0][title],改為$pic[0]->title後正常了