Unable to locate the model you have specified - CodeIgniter Issue

后端 未结 9 446
不知归路
不知归路 2021-01-14 03:55

I\'m getting an unable to locate model error.

$this->load->model(\'1/Gift_model\');

My model file name is gift_model.php

9条回答
  •  -上瘾入骨i
    2021-01-14 04:25

    Starting with CodeIgniter 3.0, all class filenames (libraries, drivers, controllers and models) must be named in a Ucfirst-like manner or in other words - they must start with a capital letter.

    (Source: CI docs)

提交回复
热议问题