$this->db->select();
$this->db->from('test');
$where = "`is_del` =1 ";
$this->db->where($where);
$db = clone ($this->db);
$this->db->limit($limit, $offset);
$this->db->order_by('add_time', 'desc');
$ret['list'] = $this->db->get()->result_array();
$ret['total'] = $db->count_all_results();
//debug($ret['total']);
if ($ret) {
return $ret;
}
return FALSE;