這篇文章給大家介紹CodeIgniter中如何使用pagination分頁類,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
成都創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、網(wǎng)站制作、揚州網(wǎng)絡(luò)推廣、微信小程序定制開發(fā)、揚州網(wǎng)絡(luò)營銷、揚州企業(yè)策劃、揚州品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們大的嘉獎;成都創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供揚州建站搭建服務(wù),24小時服務(wù)熱線:13518219792,官方網(wǎng)址:www.cdcxhl.comcontroller控制器(application/controller/page.php文件):
public function index() { $this->load->model ( 'home_model' , '' , TRUE); $config= array(); $config['per_page'] = $this->per_page; //每頁顯示的數(shù)據(jù)數(shù) $current_page = intval($this->input->get_post('per_page',true)); //獲取當前分頁頁碼數(shù) //page還原 if(0 == $current_page) { $current_page = 1; } $offset = ($current_page - 1 ) * $config['per_page']; //設(shè)置偏移量 限定 數(shù)據(jù)查詢 起始位置(從 $offset 條開始) $result = $this->home_model->index($offset,$config['per_page'],$order='id desc'); $config['base_url'] = $this->config->item('base_url').'admin/home/index?'; $config['first_link'] = $this->first_link;//首頁 $config['prev_link'] = $this->prev_link;//上一頁 $config['next_link'] = $this->next_link;//下一頁 $config['last_link'] = $this->last_link;//尾頁 $config['total_rows'] = $result['total'];//總條數(shù) $config['num_links'] = 3;//頁碼連接數(shù) $config['use_page_numbers'] = TRUE; $config['page_query_string'] = TRUE; $this->load->library('pagination');//加載ci pagination類 $this->pagination->initialize($config); $result = array( 'list' => $result['list'], 'total' => $result['total'], 'current_page' => $current_page, 'per_page' => $config['per_page'], 'page' => $this->pagination->create_links(), ); $this->load->view ( 'admin/home' , $result ); }
model模型(application/model/home_model.php文件):
public function index($offset,$num,$order='id desc') { $query = $this->db->query( "SELECT Name_cn,Mall_type,create_time FROM smzdm_mall WHERE Is_deleted = 0 order by {$order} limit {$offset},{$num}"); return array( 'total' => $this->db->count_all('smzdm_mall',array('Is_deleted'=>'0')), 'list' => $query->result(), ); }
關(guān)于CodeIgniter中如何使用pagination分頁類就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。