Fatal error: Class 'stdClass' not found codeigniter

后端 未结 2 1461

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: Cla

相关标签:
2条回答
  • 2021-01-24 18:47

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

    0 讨论(0)
  • 2021-01-24 18:48

    This could be solved using either

    use \stdClass
    

    or

    $my_obj = new \stdClass();
    

    Hope this helps!

    0 讨论(0)
提交回复
热议问题