标签: php codeigniter models
我在自动加载文件中添加了一个模型,如下所示:
$autoload['model'] = array('themodel');
我想知道如何在控制器中使用它,因为当我写$ this时它会得到当前的控制器函数
谢谢,
答案 0 :(得分:3)
使用$this->themodel->some_function()
$this->themodel->some_function()
我建议你在models in CodeIgniter上做作业。