我更新了个人资料图片(在前端登录后)使用编辑个人资料,图片上传成功。
但当我单击查看纵断面图时,它显示错误
"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,但没有回应。
发布于 2014-02-06 12:27:03
经过两天的努力,我的问题终于得到了答案。我只是在common.inc中写了一个条件,
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.https://stackoverflow.com/questions/21552738
复制相似问题