Home Backend Development PHP Tutorial A PHP paging class code imitating Aspnetpager with source code download_PHP tutorial

A PHP paging class code imitating Aspnetpager with source code download_PHP tutorial

Jul 21, 2016 pm 03:15 PM
.net php Same code Pagination and Basic Ideas of kind logic

The basic logical idea is the same as that of .net, that is, the configuration through the entity class is replaced by the configuration through the array. The logic is relatively simple, and the paging HTML is spliced ​​based on the conditional judgment.

has the following simple functions:

1: Supports the display or configuration of related buttons
2: Supports the number of pages per page, text name, Free configuration of html tag class name
3: Support url rewritten pages (you need to add rewriting rules in the configuration array yourself)

Easy, just go to the code:

Core code: pager.class.php

Copy code The code is as follows:

class pager{
//Paging parameter configuration
private $config=array(
//Text of home button
"first_btn_text" =>"Home",
//Text of the previous page button,
"pre_btn_text"=>"Previous page",
//Text of the next page
" next_btn_text"=>"Next page",
//Text of the last page,
"last_btn_text"=>"Last page",
//Total number of records* required
"record_count"=>0,
//Page size per page
"pager_size"=>10,
//Current page number*required
"pager_index"=>1,
//The maximum number of buttons displayed on each page
"max_show_page_size"=>10,
//The name of the page number value passed in the browser defaults to page
"querystring_name"=>"page" ,
//Whether URL is rewritten, the default is flase
"enable_urlrewriting"=>false,
//URL rewriting rules such as page/{page} where {page} represents the number of pages
"urlrewrite_pattern"=>"",
//The css name of the paging container
"classname"=>"paginator",
//The class name of the current page button
"current_btn_class"= >"cpb",
//Css of pagination text describing span tag
"span_text_class"=>"stc",
/*Jump detailed text
*totle represents the total number of pages ,
*size represents the number of each page
* goto represents the input box to jump
* record represents the total number of records
* index represents the current page number
*/
" jump_info_text"=>"Total {totle} pages, {size} records per page, jump to {goto} page",
//Jump button text
"jump_btn_text"=>"OK ",
//Whether to show the jump
"show_jump"=>false,
//Whether to show the previous button homepage & previous page
"show_front_btn"=>true,
//Whether to display the following button next page & last page
"show_last_btn"=>true
);
/*
* Constructor of class
* $config: this Configuration of paging class
*/
public function __construct($config)
{
$this->init_config($config);
}
function __destruct()
{
unset($this->config);
}
/*
* Construct the main paging function
*/
public function builder_pager()
{
//Paging string
$pager_arr=array();
//Size of each page
$pager_size=$this->config["pager_size"];
// Get the total number of paging
$pager_num=$this->config["record_count"]%$pager_size==0?$this->config["record_count"]/$pager_size:floor($this-> ;config["record_count"]/$pager_size)+1;
//If the current page number is 0, set it to 1
$pager_index=round($this->config["pager_index"] )==0?1:round($this->config["pager_index"]);
//If the current page number is greater than or equal to the last page, the current page number is set to the last page
$ pager_index=$pager_index>=$pager_num?$pager_num:$pager_index;
//The page number of the next page
$pager_next=$pager_index>=$pager_num?$pager_num:($pager_index+1);
//Get the url that needs to be redirected
$url=$this->get_url();
//Add the div at the beginning
$classname=$this->config["classname"] ;
$pager_arr[]="
n";
//Add the html of the first two buttons
if($this->config["show_front_btn "])
{
//If the current page number is 1, the two front buttons will be disabled
$attr=$pager_index==1?"disabled=disabled":"";
$pager_arr[]=$this->get_a_html(self::format_url($url,1),$this->config["first_btn_text"],$attr);
$pager_arr[]=$ this->get_a_html(self::format_url($url,$pager_index-1),$this->config["pre_btn_text"],$attr);
}
//The starting point of the currently displayed page number Start 1~10 1 11~20 11
$current_pager_start=$pager_index%$pager_size==0?($pager_index/$pager_size-1)*$pager_size+1:floor($pager_index/$pager_size)*$pager_size +1;
//The end of the currently displayed page number
$current_pager_end=($current_pager_start+$pager_size-1)>=$pager_num?$pager_num:($current_pager_start+$pager_size-1);
// Add html that jumps to the previous level
if($pager_index>$pager_size)
{
$pager_arr[]=$this->get_a_html(self::format_url($url,$current_pager_start- 1),"...");
}
//Main page number part
for($i=$current_pager_start;$i<=$current_pager_end;$i++)
{
if($i!=$pager_index)
{
$pager_arr[]=$this->get_a_html(self::format_url($url,$i),$i);
}else{
//If this is the current page
$pager_arr[]=$this->get_span_html($i,$this->config["current_btn_class"]);
}
}
//Add the next layer of html
if($pager_index<=($pager_num-$pager_num%$pager_size))
{
$pager_arr[]=$this->get_a_html(self ::format_url($url,$current_pager_end+1),"...");
}
//添加后面两个按钮的html
if($this->config["show_last_btn"])
{
//如果当前的页码为最后一页 则last这两个按钮则会被禁用
$attr=$pager_index>=$pager_num?"disabled=disabled":"";
$pager_arr[]=$this->get_a_html(self::format_url($url,$pager_next),$this->config["next_btn_text"],$attr);
$pager_arr[]=$this->get_a_html(self::format_url($url,$pager_num),$this->config["last_btn_text"],$attr);
}
//添加跳转的html
if($this->config["show_jump"])
{
$patterns=array("/\{totle\}/","/\{size\}/","/\{goto\}/","/\{record\}/","/\{index\}/",);
$replacements=array(
$pager_num,
$pager_size,
"\n",
$this->config["record_count"],
$this->config["pager_index"]
);
//替换特定的标签组成跳转
$pager_arr[]=preg_replace($patterns,$replacements,$this->config["jump_info_text"]);
$btn_text=$this->config['jump_btn_text'];
$pager_arr[]="".$this->config['jump_btn_text']."\n";
$pager_arr[]=$this->get_jumpscript($url);
}
$pager_arr[]="
";
$this->config["pager_index"]=$pager_index;
return implode($pager_arr);
}
/*
* Get the url that needs to be processed, Support rewriting configuration, url of various parameters
*/
private function get_url()
{
//If set to allow url rewriting
if($this->config ["enable_urlrewriting"])
{
//Get the url where the calling file is located
$file_path="http://".$_SERVER["HTTP_HOST"].$_SERVER["PHP_SELF"];
//Get the network directory where the calling url is located
$file_path=substr($file_path,0,strripos($file_path,"/"))."/";
//Append the directory directly Write rules to form a new url
$url=$file_path.$this->config["urlrewrite_pattern"];
}else{
//Get the absolute url of the current calling page
$url ="http://".$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"];
//The name of the paging parameter passed in the browser
$querystring_name=$this->config ['querystring_name'];
//If the url contains the string of php?, you need to replace the paging parameters
if(strpos($url,"php?"))
{
//If the words page=xxx exist
$pattern="/$querystring_name=[0-9]*/";
if(preg_match($pattern,$url))
{
//Replace the numbers in the words containing page=*** with {0}
$url=preg_replace($pattern,"$querystring_name={page}",$url);
}else{
$url.="&$querystring_name={page}";
}
}else{
//Add parameters directly to form the complete url for paging
$url.="?$querystring_name ={page}";
}
}
return $url;
}
/*
* Get the html of the a tag
*$url: the direction to which the a tag is directed html
*$title: The title of the a tag
**$attr: The additional attributes on the a tag do not need to be written
*/
private static function get_a_html($url,$title,$ attr="")
{
return "$titlen";
}
/*
* Get the html of the span tag
* $num: The text in span, that is, the page number
* $classname: The class name of the span tag
*/
private static function get_span_html($num,$classname)
{
return "$numn";
}
/*
* Format url
* $url original url
* $page page number
*/
private static function format_url($url,$page)
{
return preg_replace("/{page}$/",$page,$url);
}
/*
*Initialize the paging configuration file
*If the key value is not included in the parameter , the declared value is used by default
*/
private function init_config($config)
{
//Determine whether the value exists, is an array, and contains records
if(isset ($config)&&is_array($config)&&count($config)>0){
foreach($config as $key=>$val)
{
$this->config[$ key]=$val;
}
}
}
/*
* Method to construct a jump function script
*$url: the url that needs to be jumped
*/
private function get_jumpscript($url)
{
$scriptstr = "n";
return $scriptstr;
}
/*
* Construct a function in php similar to the format method in .net
* Usage: format("hello,{0},{1},{2}", 'x0','x1 ','x2')
*/
private function format() {
$args = func_get_args();
if (count($args) == 0) { return;}
if (count($args) == 1) { return $args[0]; }
$str = array_shift($args);
$str = preg_replace_callback('/\{(0|[1 -9]\d*)\}/', create_function('$match', '$args = '.var_export($args, true).'; return isset($args[$match[1]]) ? $ args[$match[1]] : $match[0];'), $str);
return $str;
}
}
?>

Directly call
Copy code The code is as follows:

$config1=array(
"record_count"=>703,
"pager_size"=>10,
"show_jump"=>true,
"pager_index"=> ;$_GET["page"]
);
$pager_simple=new pager($config1);
echo $pager_simple->builder_pager();
?>

Finally, let’s take a look at the demo pictures:
A PHP paging class code imitating Aspnetpager with source code download_PHP tutorial
Since I have just learned PHP recently, please let me know if there are any irregularities, inefficiencies, redundancies or design issues in the code. Please give me your advice.

demo source code download

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326058.htmlTechArticleThe basic logical idea is the same as that of .net, that is, the configuration through the entity class is replaced by the configuration through the array , the logic is relatively simple, and the paging HTML is spliced ​​according to the conditions. There are the following...
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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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.

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 Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

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

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 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.

See all articles