创建模型

application/model

文件名 - Home_model.php
文件内

class Home_model extends CI_Model {

    public $variable;

    public function __construct()
    { 
        parent::__construct();
    }

    public function get_data()
    {
        $query = $this->db->get('table_name', 10);
        return $query->result_array();
    }
}

当你需要加载这个模型时:

$this->load->model('home_model');
$this->home_model->get_data();

或者如果你希望将模型分配给不同的对象名称,可以像下面这样指定:

$this->load->model('home_model', 'home');
$this->home->get_data();