Fatal error: Class 'stdClass' not found codeigniter

后端 未结 2 1462

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

    This could be solved using either

    use \stdClass
    

    or

    $my_obj = new \stdClass();
    

    Hope this helps!

提交回复
热议问题