这是我的模特
function get_news(){
$this->db->select('*');
$this->db->from('articles');
$this->db->where('status' , 0);
$this->db->limit(6);
$this->db->order_by('created', 'desc');
return $this->db->get()->result();
}
我的餐桌文章
id----title----body----status---created
现在在专栏正文上,我只想显示 100 个字符,我应该在哪里编辑视图、控制器或此模型。
提前问好。