创建模型的最佳方法是什么,以便我可以像这样从控制器调用它?
$this->model_model->function->dbname
我有以下模型,但它很垃圾:
模型:
function systemName()
{
$query = $this->db->query("SELECT cms_name FROM options");
return $query->result();
}
更新:
function systemOptions($options)
{
$this->db->select($options);
$query = $this->db->get('options');
return $query->num_rows();
}