当前位置:首页 > CMS教程 > 其它CMS > 列表

CodeIgniter分页类pagination使用方法示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-21 18:06:09 浏览: 评论:0 

这篇文章主要介绍了CodeIgniter分页类pagination使用方法,结合实例形式简单分析了CodeIgniter框架中的分页类pagination基本的配置与使用技巧,需要的朋友可以参考下。

本文实例讲述了CodeIgniter分页类pagination使用方法,分享给大家供大家参考,具体如下:

controller控制器(application/controller/page.php文件):

  1. public function index() 
  2.     $this->load->model ( 'home_model' , '' , TRUE); 
  3.     $configarray(); 
  4.     $config['per_page'] = $this->per_page; //每页显示的数据数 
  5.     $current_page    = intval($this->input->get_post('per_page',true)); //获取当前分页页码数 
  6.     //page还原 
  7.     if(0 == $current_page
  8.     { 
  9.       $current_page = 1; 
  10.     } 
  11.     $offset = ($current_page - 1 ) * $config['per_page']; //设置偏移量 限定 数据查询 起始位置(从 $offset 条开始) 
  12.     $result = $this->home_model->index($offset,$config['per_page'],$order='id desc'); 
  13.     $config['base_url']      = $this->config->item('base_url').'admin/home/index?'
  14.     $config['first_link']     = $this->first_link;//首页 
  15.     $config['prev_link']     = $this->prev_link;//上一页 
  16.     $config['next_link']     = $this->next_link;//下一页 
  17.     $config['last_link']     = $this->last_link;//尾页 
  18.     $config['total_rows']     = $result['total'];//总条数 
  19.     $config['num_links'] = 3;//页码连接数 
  20.     $config['use_page_numbers']  = TRUE; 
  21.     $config['page_query_string'] = TRUE; 
  22.     $this->load->library('pagination');//加载ci pagination类 
  23.     $this->pagination->initialize($config); 
  24.     $result = array
  25.         'list' => $result['list'], 
  26.         'total'  => $result['total'], 
  27.         'current_page' => $current_page
  28.         'per_page' => $config['per_page'], 
  29.         'page'  => $this->pagination->create_links(), 
  30.     ); 
  31.     $this->load->view ( 'admin/home' , $result ); 

model模型(application/model/home_model.php文件):

  1. public function index($offset,$num,$order='id desc'
  2.     $query = $this->db->query( "SELECT Name_cn,Mall_type,create_time FROM smzdm_mall WHERE Is_deleted = 0 order by {$order} limit {$offset},{$num}"); 
  3.     return array
  4.         'total' => $this->db->count_all('smzdm_mall',array('Is_deleted'=>'0')), 
  5.         'list' => $query->result(), 
  6.     ); 
  7. }

Tags: CodeIgniter分页类 pagination

分享到: