
How to achieve php page number?
Page number display implementation in PHP
Effect:

Use it almost directly after taking it. pageNow #Current page, pageNumb #Total number of pages Just change the two variable assignment methods. Code in
<?php
########################################################################
#页码显示PHP脚本
#ora
#2019-04-22 19:49:57
#########################################################################
#$pageNumb = $arrlen /$contentNumbOnePage ; #总共页码数=内容数/每页内容数。
$pageNumb = 7;
if (is_float($pageNumb)) { #总共页码数 取整。
$pageNumb = (int)$pageNumb + 1;
}elseif (is_integer($pageNumb)) {
$pageNumb = $pageNumb;
}else $pageNumb = 1; #出错,但重新定义总页码数为1,而不是退出。
#$pageNow #当前页
#$_GET['page'] #url传递(请求)的页码。
if (!empty($_GET['page']) && is_integer($_GET['page']/1) ) { #is_integer($_GET['page']/1) ,除1以后才是整数... 此处有问题。待修正。
$pageNow = $page = $_GET['page'] ;
}else {$pageNow = $page = 1;} #没有请求页码,给予初始化为1.
#页码显示
#规则:必有首尾页,当前页前后页码相同且给定。其他页码用...表示。
/*
四种情况。难得解释清楚,感兴趣自己用一串数字掩饰一下。
比如:
1 23 ...777 ; 1 2 34...777 ;12 3 45...777 ; 1...23 4 56...777;1...234_235 <236> 237_238 ...777;
1 23 ...7 ; 1 2 34...7 ; 12 3 45...7 ;123 4 567;
1 23 ...5 ; 1 2 345; 12 3 45;
1 ... 234_235 <236> 237 ; 1 ... 235 236 <237> ;
1 2 <3> 4 ;
*/
#ye ma xian shi.
$jiange=2;#ye ma jian ge.
if (!is_integer($jiange) && $jiange<1){$jiange=2;}# jian ge bu xiao yu 1,qie wei zhengshu.
##########################################下面4个case是方法############################
#case 1
if ($pageNow - $jiange - 1 - 1 > 0 && $pageNumb -$jiange -1 -1 >$pageNow){ # 前面有首页1、$jiange定义的间隔页码、和它本身。
echo " <a href=\"?page=1\" >1</a> " ;
echo "<span class=\"extend\">...</span> ";
for ($num = $pageNow - $jiange ;$num<$pageNow;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
echo "<span class=\"current\">$pageNow</span>"; #当前页
for ($num = $pageNow + 1 ; $num<=$pageNow + $jiange ;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
$num = $pageNow + 1;
echo "<span class=\"extend\">...</span> ";
echo "<a href=\"?page=$pageNumb\"> $pageNumb</a>";
}
#case 2
if ($pageNow - $jiange - 1 - 1 <= 0 && $pageNumb -$jiange -1 -1 >$pageNow){ # 到首页的间隔页少于等于定义间隔值。前面的页码全输出。后连续输出间隔页码。
for($i=1;$i<=$pageNow + $jiange ;$i++){
if($i==$pageNow){
echo "<span class=\"current\">$pageNow</span>"; #当前页
}else {echo "<a href=\"?page=$i\"> $i</a>"; }
}
echo "<span class=\"extend\">...</span> ";
echo "<a href=\"?page=$pageNumb\"> $pageNumb</a>";
}
#case 3
if ($pageNow - $jiange - 1 - 1 > 0 && $pageNumb -$jiange -1 -1 <=$pageNow){
echo " <a href=\"?page=1\" >1</a> " ;
echo "<span class=\"extend\">...</span> ";
for ($num = $pageNow - $jiange ;$num<$pageNow;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
echo "<span class=\"current\">$pageNow</span>"; #当前页
for ($num = $pageNow + 1 ; $num<=$pageNumb;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
}
#case 4
if ($pageNow - $jiange - 1 - 1 <= 0 && $pageNumb -$jiange -1 -1 <=$pageNow){ #
for($i=1;$i<=$pageNumb ;$i++){
if($i==$pageNow){
echo "<span class=\"current\">$pageNow</span>"; #当前页
}else {echo "<a href=\"?page=$i\"> $i</a>"; }
}
#echo "<span class=\"extend\">...</span> ";
#echo "<a href=\"?page=$pageNumb\"> $pageNumb</a>";
}html format:
<?php
########################################################################
#页码显示PHP脚本
#ora
#2019-04-22 19:49:57
#########################################################################
#$pageNumb = $arrlen /$contentNumbOnePage ; #总共页码数=内容数/每页内容数。
$pageNumb = 7;
if (is_float($pageNumb)) { #总共页码数 取整。
$pageNumb = (int)$pageNumb + 1;
}elseif (is_integer($pageNumb)) {
$pageNumb = $pageNumb;
}else $pageNumb = 1; #出错,但重新定义总页码数为1,而不是退出。
#$pageNow #当前页
#$_GET['page'] #url传递(请求)的页码。
if (!empty($_GET['page']) && is_integer($_GET['page']/1) ) { #is_integer($_GET['page']/1) ,除1以后才是整数... 此处有问题。待修正。
$pageNow = $page = $_GET['page'] ;
}else {$pageNow = $page = 1;} #没有请求页码,给予初始化为1.
#页码显示
#规则:必有首尾页,当前页前后页码相同且给定。其他页码用...表示。
/*
四种情况。难得解释清楚,感兴趣自己用一串数字掩饰一下。
比如:
1 23 ...777 ; 1 2 34...777 ;12 3 45...777 ; 1...23 4 56...777;1...234_235 <236> 237_238 ...777;
1 23 ...7 ; 1 2 34...7 ; 12 3 45...7 ;123 4 567;
1 23 ...5 ; 1 2 345; 12 3 45;
1 ... 234_235 <236> 237 ; 1 ... 235 236 <237> ;
1 2 <3> 4 ;
*/
#ye ma xian shi.
$jiange=2;#ye ma jian ge.
if (!is_integer($jiange) && $jiange<1){$jiange=2;}# jian ge bu xiao yu 1,qie wei zhengshu.
#case 1
if ($pageNow - $jiange - 1 - 1 > 0 && $pageNumb -$jiange -1 -1 >$pageNow){ # 前面有首页1、$jiange定义的间隔页码、和它本身。
echo " <a href=\"?page=1\" >1</a> " ;
echo "<span class=\"extend\">...</span> ";
for ($num = $pageNow - $jiange ;$num<$pageNow;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
echo "<span class=\"current\">$pageNow</span>"; #当前页
for ($num = $pageNow + 1 ; $num<=$pageNow + $jiange ;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
$num = $pageNow + 1;
echo "<span class=\"extend\">...</span> ";
echo "<a href=\"?page=$pageNumb\"> $pageNumb</a>";
}
#case 2
if ($pageNow - $jiange - 1 - 1 <= 0 && $pageNumb -$jiange -1 -1 >$pageNow){ # 到首页的间隔页少于等于定义间隔值。前面的页码全输出。后连续输出间隔页码。
for($i=1;$i<=$pageNow + $jiange ;$i++){
if($i==$pageNow){
echo "<span class=\"current\">$pageNow</span>"; #当前页
}else {echo "<a href=\"?page=$i\"> $i</a>"; }
}
echo "<span class=\"extend\">...</span> ";
echo "<a href=\"?page=$pageNumb\"> $pageNumb</a>";
}
#case 3
if ($pageNow - $jiange - 1 - 1 > 0 && $pageNumb -$jiange -1 -1 <=$pageNow){
echo " <a href=\"?page=1\" >1</a> " ;
echo "<span class=\"extend\">...</span> ";
for ($num = $pageNow - $jiange ;$num<$pageNow;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
echo "<span class=\"current\">$pageNow</span>"; #当前页
for ($num = $pageNow + 1 ; $num<=$pageNumb;$num++){
echo "<a href=\"?page=$num\">$num</a> ";
}
}
#case 4
if ($pageNow - $jiange - 1 - 1 <= 0 && $pageNumb -$jiange -1 -1 <=$pageNow){ #
for($i=1;$i<=$pageNumb ;$i++){
if($i==$pageNow){
echo "<span class=\"current\">$pageNow</span>"; #当前页
}else {echo "<a href=\"?page=$i\"> $i</a>"; }
}
#echo "<span class=\"extend\">...</span> ";
#echo "<a href=\"?page=$pageNumb\"> $pageNumb</a>";
}For more PHP-related knowledge, please visit PHP Tutorial!
The above is the detailed content of How to implement php page number. For more information, please follow other related articles on the PHP Chinese website!
ACID vs BASE Database: Differences and when to use each.Mar 26, 2025 pm 04:19 PMThe article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and
PHP Secure File Uploads: Preventing file-related vulnerabilities.Mar 26, 2025 pm 04:18 PMThe article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.
PHP Input Validation: Best practices.Mar 26, 2025 pm 04:17 PMArticle discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.
PHP API Rate Limiting: Implementation strategies.Mar 26, 2025 pm 04:16 PMThe article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand
PHP Password Hashing: password_hash and password_verify.Mar 26, 2025 pm 04:15 PMThe article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur
OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.Mar 26, 2025 pm 04:13 PMThe article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.
PHP XSS Prevention: How to protect against XSS.Mar 26, 2025 pm 04:12 PMThe article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.
PHP Interface vs Abstract Class: When to use each.Mar 26, 2025 pm 04:11 PMThe article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Mac version
God-level code editing software (SublimeText3)

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool






