问题
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