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();
}
我的表arcticles
id----title----body----status---created
現在這裏的列體我想以顯示只有100個字符我應該在哪裏觀看,控制器或這個模型uped ..
提前。
您需要將主體剝離爲100個字符,或者您想要獲取長度只有100個字符的數據? –
是的,我想只取100,在身上有更多,但只有100個字符,我想不是所有 – SAR
substr用於你的tpl。無需在查詢提取中使用它 –