search
HomeBackend DevelopmentPHP Tutorial分页原理技术细节剖析(php+mysql)实例

提到分页,大家都不陌生,在我们日常浏览网页时常遇到,尤其新闻文章列表等都有分页,如下图所示:

分页实例

下面,通过一个实例为大家剖析一下分页原理上技术细节。

一、功能开发思路

在分页功能的实现前,先做了一个思维导图理清一下大概的思路,废话不多说,上图:

分页原理思维导图

二、功能开发各模块介绍

用到的工具有,轻量级编辑器editplus,mysql数据库管理工具phpmyadmin,环境为windows 7下Apache+PHP+Mysql。下面,给大家分享一下,运用php、mysql如何实现如上分页效果。

1.mysql数据库的创建准备

在设计这个功能时,创建了一个数据库"fenye",表名为"people",设定了字段——序号(id,为主键,自增),姓名(name),性别(sex),如下图:

数据库"fenye"结构图

2.php功能实现介绍

php功能页面,设计了三个——公共调用页conn.php,添加信息页add.php,信息列表页list.php。下面来做各功能页面的技术细节分析。

(1).公共调用页conn.php

该功能页面主要实现数据库及表的连接,数据库编码的设定,代码如下:

<?php@mysql_connect("localhost:3306","数据库用户名","数据库密码")or die("mysql连接失败");      //mysql连接@mysql_select_db("fenye")or die("db连接失败");         //数据库"fenye"连接mysql_query("set names gbk");      //数据库编码设置为gbk?>

注解

  • @ 符号用于屏蔽因mysql连接失败时报错显示的mysql信息,出于用户体验和安全性考虑;
  • die()函数:用于mysql数据库连接失败时抛出错误提示信息,其中内容自定义。
(2).添加信息页add.php

该功能页面主要向数据库内添加信息记录,核心功能代码为插入sql语句,完整代码如下:

<?phpinclude("conn.php");      //调用conn.phpif(!empty($_POST["subs"])){      //判断subs数据是否提交  $user=$_POST["user"];        //将表单提交上来的姓名user赋值给$user  $sex=$_POST["sex"];      //将表单提交上来的性别sex赋值给$sex  $sql="insert into `people` (`id`,`name`,`sex`) values (null,'$user','$sex')";      //插入sql语句  echo mysql_query($sql) ? "<script language='javascript'>alert('插入成功');</script>" : mysql_error(); //三元判断语句,执行成功返回js脚本提示信息,不成功抛出错误提示mysql_error()  }?><div class="nav"><a href="add.php">添加信息</a></div><div class="main">    <form action="add.php" method="post">        姓名:<input type="text" name="user" /><br/><br/>        性别:<input type="text" name="sex" /><br/><br/>        <input type="submit" name="subs" value="保存"/>    </form></div>

注解

  • 三元判断语句:条件 ? 结果1 : 结果2——成功执行结果1,失败执行结果2
  • mysql_error()函数用于返回上一个mysql操作产生的文本错误信息提示

(3)信息列表页list.php

该页主要功能用于呈现信息列表,并实现分页功能,先上完整代码,如下:

<div class="nav">  <a href="add.php">添加信息</a></div><div class="main">  <table cellspacing="0" cellpadding="10" border="1" bordercolor="#cccccc" />    <tr><td>序号</th><th>姓名</th><th>性别</th></tr><?phpinclude("conn.php");      //调用conn.php页面$pagesize=5;               //设定每页记录显示5条$url=$_SERVER["REQUEST_URI"];      //获取当前文件完整url,赋值给$url$url=parse_url($url);        //将当前$url按照组成部分转换为数组,赋值给$url$url=$url[path];      //获取当前$url的路径,赋值给$url$numq=mysql_query("select * from `people`");      //查询表`people`内所有记录,赋值给$numq$num=mysql_num_rows($numq);      //获取$numq的总条数,赋值给$numif($_GET["page"]){      //判断当前页参数'page'是否存在,存在执行以下代码  $pageval=$_GET["page"];      //将参数'page'赋值给$pageval  $page=($pageval-1)*$pagesize;      //执行分页公式,将值赋值给起始值$page  $page.=",";      //连接字符','}if(is_integer($num/$pagesize)){      //判断总页码是否为整数,若为整数执行以下代码  $sumpage=$num/$pagesize;      }else{  $sumpage=intval($num/$pagesize)+1;      //总页码不为整数,取整然后+1}for($i=1;$i<=$sumpage;$i++){      //循环打印页码  if($i==$pageval){       //当前页码不加超链接    $pagenum.=$i." ";  }else{    $pagenum.="<a href=$url?page=".$i.">".$i."</a> ";  }}if($num>$pagesize){      //若总条数大于每页记录显示条数,执行以下分页代码   if($pageval<=1){        //当传递过来的参数'page'小于等于1时(即避免页码出现0或负值)     $pageval=1;     echo "共 $num 条 ".$pagenum."<a href=$url?page=".($pageval+1).">下一页</a> <a href=$url?page=".$sumpage.">末页</a>";  }else if((($num/$pagesize)-$pageval)<=0){      //总页码(不一定为整数)与当前页码的差小于等于0时,即最后一页,执行以下代码    echo "共 $num 条 <a href=$url?page=1>首页</a> <a href=$url?page=".($pageval-1).">上一页</a>".$pagenum;  }else{      //其他情况,即页码非第一页或最后一页,执行以下代码    echo "共 $num 条 <a href=$url?page=1>首页</a> <a href=$url?page=".($pageval-1).">上一页</a>".$pagenum."<a href=$url?page=".($pageval+1).">下一页</a> <a href=$url?page=".$sumpage.">末页</a>";  }}$sql="select * from `people` limit $page $pagesize";      //依照limit条件查询记录,赋值$sql为查询语句$query=mysql_query($sql);      //执行代码while($rs=mysql_fetch_array($query)){      //循环将每条记录以数组形式存入$rs?><tr>    <td><?php echo $rs["id"] ?></td>    <td><?php echo $rs["name"] ?></td>    <td><?php echo $rs["sex"] ?></td></tr><?php}?></table></div>

由于代码篇幅较长,下面根据功能实现的思路进行细节剖析:首先,找到功能实现的核心基础,页码分页核心代码:select * from `表名` limit 起始值,读取条数;即:

$sql="select * from `people` limit $page $pagesize";

需要设定两个变量,起始值$page,读取条数$pagesize$pagesize可人为赋值,起始值$page的获取则要费一番周折,需要用到分页公式:起始值=(当前页面-1)* 每页显示条数,因为我们需要关联到当前的页码$pageval,因此得到如下代码:

if($_GET["page"]){    $pageval=$_GET["page"];    $page=($pageval-1)*$pagesize;    $page.=",";}

获取$page后,我们还要实现首页、上一页、下一页、末页、页码罗列、记录总条数的功能,记录总条数相对简单,直接查询所有记录条数$num即可,即:

$numq=mysql_query("select * from `people`");$num=mysql_num_rows($numq);

至于首页、上一页、下一页、末页、页码罗列这些,则需要运用在超链接设置对应的参数'?page='来实现,如:

格式:<a href=$url?page=".对应页码.">目标页</a>

所以$url对应页码是需要想办法获取的。首先我们来看$url的获取,要用到两个函数:$_SERVER["REQUEST_URI"](用于获取完整的URL)、parse_url()(将url按照组成部分分类后,以数组形式存放),然后取出路径path,即:

$url=$_SERVER["REQUEST_URI"];$url=parse_url($url);$url=$url[path];

$url获取后,我们来看一下对应页码的获取,首页的参数获取最简单,直接'page=1'即可,上一页、下一页分别为($pageval-1),($pageval+1)末页则为'page=总页码',即$sumpage。此处,首页、末页以及中间页需要进行条件判断:

  • 首页:当前页$pageval小于等于1时;
  • 末页:当$num(总条数)与$pagesize(每页显示条数)的商与当前页面$pageval的差值小于等于0(即两者之商小于或等于当前页值)时;
  • 中间页:除以上情况。即
if($num>$pagesize){    if($pagesize<=1){      //首页      $pagesize=1;      echo "共 $num 页 ".$pagenum."<a href=$url?page=".($pageval+1).">下一页</a> <a href=$url?page=".$sumpage.">末页</a>";    }else if((($num/$pagesize)-$pageval)<=0){      //末页      echo "共 $num 页 <a href=$url?page=1>首页</a> <a href=$url?page=".($pageval-1).">上一页</a>".$pagenum;    }else{      //中间页      echo "共 $num 页 <a href=$url?page=1>首页</a> <a href=$url?page=".($pageval-1).">上一页</a>".$pagenum."<a href=$url?page=".($pageval+1).">下一页</a> <a href=$url?page=".$sumpage.">末页</a>";    }}

其中末页'page=$sumpage'的取值需两种情况:当$num(总条数)与$pagesize(每页显示条数)的商为整数时,$sumpage=$sum/$pagesize;当两者之商不为整数时,则$sumpage=intval($sum/$pagesize)+1。即

if(is_integer($sum/$pagesize)){    $sumpage=$sum/$pagesize;}else{    $sumpage=($sum/$pagesize)+1;}

最后,$pagenum(页码罗列)需要从第一页到最后一页依次打印,所以,此处运用for循环,并进行条件判断:当处于当前页码时,即$i==$pageval,不加超链接;除此之外,加超链接,即:

for($i=1;$i<=$sumpage;$++){    if($i==$pageval){      $pagenum.=$i." ";    }else{      $pagenum.="<a href=$url?page=".$i.">".$i."</a>";    }}

自此,整个分页功能的各个功能代码段一一剖析出来,在此代码基础上,稍加修改和调整样式,即可实现常见实用的分页功能。

(4)总结

其实,对于每一位PHP学习者来说,打好基础都是非常重要的,可以使我们在以后的学习中避免重复犯错,影响学习进度和深度,这里推荐大家多通读几遍PHP:PHP manual,此外推荐大家一个PHP的REPL:PsySH,供实验调试PHP代码,在此祝大家加油,玩转PHP!

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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

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

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

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

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function