我有一个从数据库加载注释的函数。 在另一页中, 我想从我的数据库中的表中获取最后3行(因此它将显示最后3条注释)。 这是我在模型中的功能:
public function load3Comments(){
$this->db->order_by("c_id", "desc");
$query = $this->db->get('comment');
return $this->get_results($query);
}
答案 0 :(得分:1)
public function load3Comments(){
$this->db->order_by("c_id", "desc");
$this->db->limit(3);
$query = $this->db->get('comment');
return $this->get_results($query);
}
应该这样做。这是CI中的一个功能。 http://ellislab.com/codeigniter/user-guide/database/active_record.html