search
HomeBackend DevelopmentPHP TutorialA PHP paging class code imitating Aspnetpager with source code download_PHP tutorial

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{
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_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:

php
$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
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
如何在技嘉主板上设置键盘启动功能 (技嘉主板启用键盘开机方式)如何在技嘉主板上设置键盘启动功能 (技嘉主板启用键盘开机方式)Dec 31, 2023 pm 05:15 PM

技嘉的主板怎么设置键盘开机首先,要支持键盘开机,一定是PS2键盘!!设置步骤如下:第一步:开机按Del或者F2进入bios,到bios的Advanced(高级)模式普通主板默认进入主板的EZ(简易)模式,需要按F7切换到高级模式,ROG系列主板默认进入bios的高级模式(我们用简体中文来示范)第二步:选择到——【高级】——【高级电源管理(APM)】第三步:找到选项【由PS2键盘唤醒】第四步:这个选项默认是Disabled(关闭)的,下拉之后可以看到三种不同的设置选择,分别是按【空格键】开机、按组

php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

CS玩家的首选:推荐的电脑配置CS玩家的首选:推荐的电脑配置Jan 02, 2024 pm 04:26 PM

1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

主板上的数字音频输出接口-SPDIF OUT主板上的数字音频输出接口-SPDIF OUTJan 14, 2024 pm 04:42 PM

主板上SPDIFOUT连接线序最近我遇到了一个问题,就是关于电线的接线顺序。我上网查了一下,有些资料说1、2、4对应的是out、+5V、接地;而另一些资料则说1、2、4对应的是out、接地、+5V。最好的办法是查看你的主板说明书,如果找不到说明书,你可以使用万用表进行测量。首先找到接地,然后就可以确定其他的接线顺序了。主板vdg怎么接线连接主板的VDG接线时,您需要将VGA连接线的一端插入显示器的VGA接口,另一端插入电脑的显卡VGA接口。请注意,不要将其插入主板的VGA接口。完成连接后,您可以

广联达软件电脑配置推荐;广联达软件对电脑的配置要求广联达软件电脑配置推荐;广联达软件对电脑的配置要求Jan 01, 2024 pm 12:52 PM

广联达软件是一家专注于建筑信息化领域的软件公司,其产品被广泛应用于建筑设计、施工、运营等各个环节。由于广联达软件功能复杂、数据量大,对电脑的配置要求较高。本文将从多个方面详细阐述广联达软件的电脑配置推荐,以帮助读者选择适合的电脑配置处理器广联达软件在进行建筑设计、模拟等操作时,需要进行大量的数据计算和处理,因此对处理器的要求较高。推荐选择多核心、高主频的处理器,如英特尔i7系列或AMDRyzen系列。这些处理器具有较强的计算能力和多线程处理能力,能够更好地满足广联达软件的需求。内存内存是影响计算

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.