CodeIgniter PHP Model Access “Unable to locate the model you have specified”

前端 未结 16 1297
耶瑟儿~
耶瑟儿~ 2020-11-30 02:10

I have been trying to load some models for this website I am building. However, for an unknown reason, it will bring the following error :

An Error Was Encou         


        
16条回答
  •  盖世英雄少女心
    2020-11-30 02:32

    If you are on Linux then make sure your File name must match with the string passed in the load model methods the first argument.

    $this->load->model('Order_Model','order_model');
    

    You can use the second argument using that you can call methods from your model and it will work on Linux and windows as well

    $result = $this->order_model->get_order_details($orderID);
    

提交回复
热议问题