Fatal error: Class 'stdClass' not found codeigniter

◇◆丶佛笑我妖孽 提交于 2020-12-26 11:08:41

问题


I recently uploaded my codeigniter project to the live server and it shows the following error.but it is working fine on my local server.

Fatal error: Class 'stdClass' not found in /home/public_html/system/database/drivers/mysqli/mysqli_result.php on line 183


回答1:


This could be solved using either

use \stdClass

or

$my_obj = new \stdClass();

Hope this helps!




回答2:


if you use a namespaces you must write new \stdClass()



来源:https://stackoverflow.com/questions/41973248/fatal-error-class-stdclass-not-found-codeigniter

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!