我使用编辑个人资料更新了个人资料图片(在前端登录后),图片上传成功。
但是当我点击查看个人资料视图时,它显示错误
"Fatal error: Cannot use
object of type stdClass as array in /home/vhosts/Online-Education-Portal/Project/includes/common.inc on line 5808".
我不知道可能是什么问题,我检查了common.inc但没有回复。
答案 0 :(得分:1)
if(is_object($elements)) //check the array elements is object
{
$elements=(array)$elements //change to array from object
return $elements;
}
the above line is solved my problem.