用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1289|回复: 1
收起左侧

[模型] 在外部访问model中的常量要用那个函数?

[复制链接]
发表于 2019-3-25 17:58:55 | 显示全部楼层 |阅读模式
class Test extends CI_Controller
{

    public function index()
    {
        $this->load->model('user_model');

        echo $this->user_model->get('table');
        exit;

    }

}


class User_model extends CI_Model

{
    const TABLE = 'user';

   
}


Fatal error: Call to undefined method User_model::get() in
提示get不能用?
发表于 2019-3-27 09:15:18 | 显示全部楼层
User_model::TABLE

本版积分规则