Home Backend Development PHP Tutorial PHP codeigniter framework paging class_PHP tutorial

PHP codeigniter framework paging class_PHP tutorial

Jul 20, 2016 am 11:09 AM
codeigniter php Pagination exist frame use kind

codeigniter has very easy to use pagination classes. In this tutorial I will do a simple example of returning a set of results from a database tutorial and paginating those results. I will use the latest version of ci. The paging class has not been modified (at least I think not), it is always good to use the latest stable version of the framework
Call method

//Create paging
$config = array();
$this->load->library('hpages');
$config['base_url'] = "channel/lists/c{$slug}/{page}";
$ config['total_rows'] = intval($total);
$config['per_page'] = $pagesize;
$config['uri_segment'] = 1;
$config['num_links'] = 3;
$config['underline_uri_seg'] = 1; //The location of the page number in the underline uri
$this->hpages->init($config);
$this- >template['lists'] = $list;
$this->template['pagestr'] = $this->hpages->create_links(1);

PHP tutorial file code

/**
* file_name: hpages.php
* Haohai network front desk pagination class
*
* @package haohailuo
* @AutHor by Laurence.xu & lt; haohailuo@163.com > * @copyright copyright (c) 2010, haohailuo, inc.
* @link http://www.haohailuo.com
* @since version 1.0 $id$
* @version wed dec 08 12 :21:17 cst 2010
* @filesource
*/
class hpages {

var $base_url = ''; var $per_page                                                                                                                                                                                                                                                                                               due = 2; //Number of left and right links to be displayed
var $cur_page                                                                                                  '; //Home page character
var $next_link '>'; //Characters for the next page
var $last_link                                                                                                                                                                                                                                                                                                    🎜> var $uri_segment                                                                                 Starting html tag
var $full_tag_close = ''; paging area Ending html tag
var $first_tag_open = ''; //HTML tag at the beginning of the homepage
var $first_tag_close = ' '; //HTML tag at the end of the homepage var $last_tag_open = ' '; / /The html tag that starts on the last page
var $last_tag_close = '';                                              ...
var $cur_tag_close = ''; //The end of the current page...
var $next_tag_open                                                                                                                                          .                       = ' ' ; //"Number" The link's opening tag.
var $num_tag_close = ''; //The closing tag of the "number" link.
var $page_query_string = false;
var $query_string_segment = 'per_page';
var $page_mode = 'default' ;             //default for add page at the end? if include {page}, will replace it for current page.
var $underline_uri_seg = -1;                                          ​​​​​​ //Customize the current page number, if this value exists, The system will not automatically determine the current page number, and it will not be enabled by default.

function hpages() {
if (file_exists(apppath.'config/pagination.php')) {
require_once(apppath.'config/pagination.php');
foreach ($config as $key=>$val) {
                                                                                                                             🎜>             
                                                                                       hpages class initialized");
}
 
/**
* Initialization parameters
*
* @see init()
* @author laurence.xu
* @version wed dec 08 12:26:07 cst 2010
* @param $params Parameters to be initialized
*/
function init($params = array()) {
if (count($params) > 0) {
foreach ($params as $key => $ Val) { if (isset ($ this-& gt; $ key)) {
$ this-& gt; $ key = $ value; } /**
* Create paginated links
*
* @see create_links()
* @author laurence.xu
* @version wed dec 08 15:02: 27 cst 2010
                                                                                                          * /
Function Create_links ($ show_info = false, $ top_info = false) {
// If there is no record or 0 number per page, return Empty if ($ this- & gt; total_rows == 0 || $ this- & gt; per_page == 0) {
Return ';
}

// Calculate the total page Number
$num_pages = ceil($this->total_rows / $this->per_page);

                //只有一页,返回空
                if ($num_pages == 1 && !$show_info) {
                        return '';
                }
               
                $ci =& get_instance();

                //获取当前页编号
                if ($ci->config->item('enable_query_strings') === true || $this->page_query_string === true) {
                        if ($ci->input->get($this->query_string_segment) != 0) {
                                $this->cur_page = $ci->input->get($this->query_string_segment);

                                // prep the current page - no funny business!
                                $this->cur_page = (int) $this->cur_page;
                        }
                } else {
                        if (intval($this->custom_cur_page) > 0) {
                                $this->cur_page = (int) $this->custom_cur_page;
                        }else{
                                $uri_segment = $ci->uri->segment($this->uri_segment, 0);
                                if ( !empty($uri_segment) ) {
                                        $this->cur_page = $uri_segment;
                                        //如果有下划线
                                        if ($this->underline_uri_seg >= 0) {
                                                if (strpos($this->cur_page, '-') !== false) {
                                                        $arr = explode('-', $this->cur_page);
                                                }else {
                                                        $arr = explode('_', $this->cur_page);
                                                }
                                                $this->cur_page = $arr[$this->underline_uri_seg];
                                                unset($arr);
                                        }
                                        // prep the current page - no funny business!
                                        $this->cur_page = (int) $this->cur_page;
                                }
                        }
                }
                //echo $this->cur_page;exit;
                //左右显示的页码个数
                $this->num_links = (int)$this->num_links;

                if ($this->num_links < 1) {
                        show_error('your number of links must be a positive number.');
                }

                if ( ! is_numeric($this->cur_page) || $this->cur_page < 1) {
                        $this->cur_page = 1;
                }
               
                //如果当前页数大于总页数,则赋值给当前页数最大值
                if ($this->cur_page > $num_pages) {
                        $this->cur_page = $num_pages;
                }

                $uri_page_number = $this->cur_page;

                if ($ci->config->item('enable_query_strings') === true || $this->page_query_string === true) {
                        $this->base_url = rtrim($this->base_url).'&'.$this->query_string_segment.'=';
                } else {
                        $this->base_url = rtrim($this->base_url, '/') .'/';
                }
               
                if (strpos($this->base_url, "{page}") !== false) {
                        $this->page_mode = 'replace';
                }
               
                $output = $top_output = '';
                //数据总量信息
                if ($show_info) {
                        $output = " 共".$this->total_rows ."条记录 {$this->cur_page}/".$num_pages."页 每页{$this->per_page}条 ";
                }
                //数据信息,显示在上面,以供提醒
                if ($top_info) {
                        $top_output = " 共 ".$this->total_rows ." 条记录 第{$this->cur_page}页/共".$num_pages."页 ";
                }
                //判断是否要显示首页
                if  ($this->cur_page > $this->num_links+1) {
                        $output .= $this->first_tag_open.''.$this->first_link.''.$this->first_tag_close;
                }
               
                //显示上一页
                if  ($this->cur_page != 1) {
                        $j = $this->cur_page - 1;
                        if ($j == 0) $j = '';
                        $output .= $this->prev_tag_open.''.$this->prev_link.''.$this->prev_tag_close;
                }
               
                //显示中间页
                for ($i=1; $i <= $num_pages; $i++){
                        if ($i < $this->cur_page-$this->num_links || $i > $this->cur_page+$this->num_links) {
                                continue;
                        }
                       
                        //显示中间页数
                        if($this->cur_page == $i){
                                $output .= $this->cur_tag_open.$i.$this->cur_tag_close; //当前页
                        }else {
                                $output .= $this->num_tag_open.''.$i.''.$this->num_tag_close;
                        }
                }
               
                //显示下一页
                if  ($this->cur_page < $num_pages) {
                        $k = $this->cur_page + 1;
                        $output .= $this->next_tag_open.''.$this->next_link.''.$this->next_tag_close;
                }
               
                //显示尾页
                if (($this->cur_page + $this->num_links) < $num_pages) {
                        $output .= $this->last_tag_open.''.$this->last_link.''.$this->last_tag_close;
                }

                $output = preg_replace("#([^:])//+#", "1/", $output);

                // add the wrapper html if exists
                $output = $this->full_tag_open.$output.$this->full_tag_close;

                if ($top_info) {
                        return array($output, $top_output);
                }else {
                        return $output;
                }
        }
       
        /**
* Create link url address
* *
* @param $str
*/
        function makelink($str = '') {
                if($this->page_mode == 'default') {
                        return $this->_forsearch($this->base_url.$str);
                } else {
                        $url = $this->base_url;
                        if ($str == 1) {
                                $url = str_replace('/{page}', '', $this->base_url);
                        }
                        $url = str_replace("{page}", $str, $url);
                       
                        return $this->_forsearch($url);
                }
        }
       
        /**
         * 处理url地址
         *
         * @see                _forsearch()
         * @author        laurence.xu
         * @version        wed dec 08 14:33:58 cst 2010
         * @param        $string pinfo
         * @return       
       */
        function _forsearch($string) {
                $length = strlen($string) - 1;
                if($string{$length} == '/') {
                        $string = rtrim($string, '/');
                }
               
                return site_url($string);
return $string;
}
}

// end pagination class

/* end of file hpages.php */
/* location: ./system/ libraries/hpages.php */


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/444803.htmlTechArticlecodeigniter has very easy to use pagination classes. In this tutorial I will do a simple example of returning a set of results from a database tutorial and paginating those results. I will use the latest version of...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

See all articles