自己写的一个分页类 ,不是很完整,个别没有做验证,但可以使用,分页效果见文章底部。除了链接数据库的代码没有粘贴上来,其他的都粘贴了。供学习使用~

 <?php
/**
* Created by PhpStorm.
* User: Caoxt
* Date: 15-7-3
* Time: 上午10:03
*/
class page {
public $pageSize; //每页显示的文章条数
public $showPage; //页数条显示的条数
public $count; //文章总条数
public $page; //当前页
public $mergyStr; //存储页码的变量
public $skip; //跳转页开关,默认为false关闭 //初始化参数
public function __construct($count, $pageSize = 10, $showPage = 5, $currentPage = 1, $skip = false) {
$this->pageSize = $pageSize;
$this->showPage = $showPage;
$this->count = $count;
$this->page = $this->checkPage($currentPage);
$this->mergyStr = '';
$this->skip = $skip;
} //检查传递的$page的合法性
public function checkPage($currentPage) {
if($currentPage < 1 || empty($currentPage)) {
$currentPage = 1;
}
if($currentPage > $this->totalPages()) {
$currentPage = $this->totalPages();
}
return $currentPage;
} //计算偏移量
public function pageOffset() {
return ($this->showPage-1)/2;
} //计算总页数
public function totalPages() {
return ceil($this->count/$this->pageSize);
} //获取页面URL
public function getPageUrl() {
$CurrentUrl = $_SERVER["REQUEST_URI"];
$arrUrl = parse_url($CurrentUrl);
$urlQuery = $arrUrl["query"]; if($urlQuery){
//print_r($this->page);
$urlQuery = preg_replace("/(^|&)page=/" . $this->page, "", $urlQuery);
$CurrentUrl = str_replace($arrUrl["query"], $urlQuery, $CurrentUrl); if($urlQuery){
$CurrentUrl.="&page";
}
else $CurrentUrl.="page"; } else {
$CurrentUrl.="?page";
} return $CurrentUrl;
} //页码显示行
public function GetPagerContent() {
$start = 1;
$end = $this->totalPages();
$this->mergyStr .= "<div class='page'>";
if($this->page > 1) {
$this->mergyStr .= " <a href='".$this->getPageUrl()."="."1'>首页</a>";
$this->mergyStr .= " <a href='".$this->getPageUrl()."=".($this->page-1)."'>上一页</a>";
}else{
$this->mergyStr .= " <span class='disable'>首页</span>";
$this->mergyStr .= " <span class='disable'>上一页</span>";
} if($this->totalPages() > $this->showPage) {
if($this->page > $this->pageoffset()+1) {
$this->mergyStr .= "...";
} if($this->page > $this->pageoffset()) {
$start = $this->page-$this->pageoffset();
$end = $this->totalPages() > $this->page+$this->pageoffset() ? $this->page+$this->pageoffset() : $this->totalPages();
}
else{
$start = 1;
$end = $this->totalPages() > $this->showPage ? $this->showPage : $this->totalPages();
} if($this->page + $this->pageoffset() > $this->totalPages()) {
$start = $start - ($this->page + $this->pageoffset() - $end);
} } for($i=$start; $i<=$end; $i++) {
if($i == $this->page) {
$this->mergyStr .= "<span class='current'>{$i}</span>";
}else{
$this->mergyStr .= " <a href='".$this->getPageUrl()."=".$i."'>{$i}</a>";
} } if($this->totalPages() > $this->showPage && $this->totalPages() > $this->page + $this->pageoffset()) {
$this->mergyStr .= "...";
} if($this->page < $this->totalPages()) {
$this->mergyStr .= " <a href='".$this->getPageUrl()."=".($this->page+1)."'>下一页</a>";
$this->mergyStr .= " <a href='".$this->getPageUrl()."=".$this->totalPages()."'>尾页</a>";
}else{
$this->mergyStr .= " <span class='disable'>下一页</span>";
$this->mergyStr .= " <span class='disable'>尾页</span>";
} $this->mergyStr .= " 共{$this->totalPages()}页"; //显示跳转框
if($this->skip == true) {
$this->mergyStr .= $this->skipNumPage();
} $this->mergyStr .= "</div>"; print_r($this->mergyStr);
} //跳转页
public function skipNumPage() {
$this->mergyStr .= "<form action='' method='get'>";
$this->mergyStr .= "第<input type='text' name='page' style='width:30px; height:25px; border: 1px solid #aaaadd;'>页";
$this->mergyStr .= "<input type='submit' value='查询' style='border: 1px solid #aaaadd; text-decoration: none; padding:4px 10px 4px 10px; ' >";
$this->mergyStr .= "</form>";
} }

上面是类文件的所有代码,以下是调用实例:

<?php
//数据库链接,不写了 //每页显示条数
$pageSize = 10;
//页码行显示的条数
$showPage = 5;
//当前页
$page = isset($_GET['page']) ? $_GET['page'] : 1; //当前页显示的文章
$sql = "select * from follow_trade_1 order by `follow_trade_id` asc limit ".($page-1)*$pageSize.",{$pageSize}";
$query = mysql_query($sql); //计算总条数
$sql_count = mysql_query("select count(*) from follow_trade_1");
$query_count = mysql_fetch_row($sql_count);
$count = $query_count[0]; //实例化分页类
require("page.php");
$p = new page($count, $pageSize, $showPage, $page, true); //table里的文章数据
echo "<table border='1' style='width:400px;'>";
echo "<tr><td>follow_trade_id</td><td>follow_id</td></tr>";
while($rs = mysql_fetch_assoc($query)) {
echo "<tr><td>{$rs['follow_trade_id']}</td><td>{$rs['follow_id']}</td></tr>";
}
echo "</table>"; //读取分页条
$p->GetPagerContent();

样式CSS:

<style>
div.page{text-align: left; margin-top: 10px;}
div.page a{border: 1px solid #aaaadd; text-decoration: none; padding:2px 10px 2px 10px; margin: 2px;}
div.page span.current{border: 1px solid #000099; background-color: #000099; padding: 4px 10px 4px 10px; margin: 2px; color: #fff; font-weight: bold;}
div.page span.disable{border: 1px solid #eee; padding: 2px 5px 2px 5px; margin: 2px; color: #ddd;}
div.page form{display: inline;}
</style>

效果如图所示:

php 自己写的好看的分页类的更多相关文章

  1. 二十八、CI框架之自己写分页类,符合CI的路径规范

    一.参照了CSDN上某个前辈写的一个CI分页类,自己删删改改仿写了一个类似的分页类,代码如下: 二.我们在模型里面写2个数据查询的函数,一个用于查询数据数量,一个用于查询出具体数据 三.我们在控制器里 ...

  2. Ci 自己的分页类【原创】

    这里是自己手写的一个CI分页类的实现 <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** ...

  3. 二十七、CI框架之自己写分页类并加载(写分页还是有难度,搞了一整天)

    一.我们写好自己的分页代码,防止library目录中,带构造函数 二.在模型中,添加2个函数,一个是查询数据的条数,第二个是取出数据库中的数据 三.在控制中,写入相应的代码,如下: 四.在界面中,写入 ...

  4. ***CI分页:为CodeIgniter写的分页类

    ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 ...

  5. 用PHP写的一个简单的分页类 1.0版

    <?php /* 分页类 用于实现对多条数据分页显示 version:1.0 author:Knight E-Mail:S.Knight.Work@gmail.com Date:2013-10- ...

  6. 自己写的一个ASP.NET服务器控件Repeater和GridView分页类

    不墨迹,直接上代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; usin ...

  7. 用PHP写的一个简单的分页类 2.0版

    <?php /* 分页类 用于实现对多条数据分页显示 version:2.0 //基于1.0 数据库查询用mysqli实现 author:Knight E-Mail:S.Knight.Work@ ...

  8. PHP+jQuery 长文章分页类 ( 支持 url / ajax 分页方式 )

    /* ******* 环境:Apache2.2.8 ( 2.2.17 ) + PHP5.2.6 ( 5.3.3 ) + MySQL5.0.51b ( 5.5.8 ) + jQuery-1.8 **** ...

  9. PHP+jQuery 列表分页类 ( 支持 url 分页 / ajax 分页 )

    /* ******* 环境:Apache2.2.8 ( 2.2.17 ) + PHP5.2.6 ( 5.3.3 ) + MySQL5.0.51b ( 5.5.8 ) + jQuery-1.8.3.mi ...

随机推荐

  1. adb server is out of date. killing... ADB server didn't ACK * failed to star

    The connection to adb is down, and a severe error has occured. [-- :: - HelloOPone] You must restart ...

  2. hdu 4034 Graph(逆向floyd)

    floyd的松弛部分是 g[i][j] = min(g[i][j], g[i][k] + g[k][j]);也就是说,g[i][j] <= g[i][k] + g[k][j] (存在i-> ...

  3. 网页解析不了PHP源代码的解决方法

    一般出现这个错误都是因为修改了apache配置文件,但是没有使apache配置生效. 所以只要执行以下命令就行了: sudo apachectl restart sudo apachectl grac ...

  4. iOS中Block介绍(一)基础

    ios开发block的使用指南,以及深入理解block的内存管理,也适用于osx开发.讨论范围:block的使用,内存管理,内部实现.不包含的内容:gc arc下的block内存,block在c++中 ...

  5. superMap Object 属性查看的一点代码

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...

  6. docNet基础学完感想

    开学后的一个多月因为要准备acm省赛,所以docnet视频基本没看了!不过,虽然在省赛前每天都在做题,赛前刷了80多题吧!!但是比赛的时候就3题,渣啊!只做出了3个水题,后面两个小时搞两题就是出不来, ...

  7. SQL Server 数据控制语句(DCL)

    DCL控制语句用来设置更改用户或角色的权限. 授予权限操作——GRANTSQL Server服务器通过手语权限表来控制用户对数据库的访问.在数据库中添加一个新用户之后,若不尽兴额外操作,该用户只有ch ...

  8. iOS中的地图和定位

    文章摘自http://www.cnblogs.com/kenshincui/p/4125570.html#location  如有侵权,请联系删除. 概览 现在很多社交.电商.团购应用都引入了地图和定 ...

  9. UVa1368/ZOJ3132 DNA Consensus String

    #include <stdio.h>#include <string.h> int main(){    int a[4][1000]; // A/C/G/T在每列中出现的次数 ...

  10. BZOJ 1005: [HNOI2008]明明的烦恼( 组合数学 + 高精度 )

    首先要知道一种prufer数列的东西...一个prufer数列和一颗树对应..然后树上一个点的度数-1是这个点在prufer数列中出现次数..这样就转成一个排列组合的问题了.算个可重集的排列数和组合数 ...