phppage类封装分页功能_PHP封装的page分页类定义与用法完整示例

本文实例讲述了PHP封装的page分页类定义与用法。分享给大家供大家参考,具体如下:

亲测有效,见下图=========>

1. 测试实例test.php

header("Content-Type: text/html; charset=utf-8");

date_default_timezone_set("Asia/Shanghai"); //时区

require_once('page.class.php');

$showrow = 5;

$curpage = empty($_GET['page']) ? 1 : $_GET['page'];

$url = "?page={page}";

$dsn = 'mysql:host=xxx.xxx.80.xxx;dbname=admin';

$pdo = new PDO($dsn, 'root', 'root');

$pdo->query('set names utf8');

$sql = "SELECT * from operator_list where 1=1";

$res_gg = $pdo->query("SELECT count(*) as ctn from operator_list where 1=1;");

$result = $res_gg->fetch();

$total = $result["ctn"];

if (!empty($_GET['page']) && $total != 0 && $curpage > ceil($total / $showrow)) {

$curpage = ceil($total_rows / $showrow);

}

$sql .= " LIMIT " . ($curpage - 1) * $showrow . ",$showrow;";

$res_zz = $pdo->query($sql);

$result = $res_zz->fetchAll();

//print_r(json_encode($result));die;

?>

/p>

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

报表

style="border:1px solid #ccc;" cellpadding="0" cellspacing="1">

ID商品编号订阅状态商品状态修改时间创建时间

if (!empty($result)) {

foreach ($result as $k => $v) {

?>

<?php echo $v['id']; ?><?php echo $v["customer_id"]; ?><?php echo $v["name"]; ?><?php echo $v["role_id"]; ?><?php echo $v["status"]; ?><?php echo $v["cdate"]; ?>

}

}

?>

if ($total > $showrow) {//总记录数大于每页显示数,显示分页

$page = new page($total, $showrow, $curpage, $url, 3);

echo $page->myde_write();

}

?>

阿里巴巴:https://www.taobao.com

2. 封装的page分页类page.class.php

/* * *********************************************

* @类名: page

* @参数: $myde_total - 总记录数

* $myde_size - 一页显示的记录数

* $myde_page - 当前页

* $myde_url - 获取当前的url

* @功能: 分页实现

*/

class page {

private $myde_total; //总记录数

private $myde_size; //一页显示的记录数

private $myde_page; //当前页

private $myde_page_count; //总页数

private $myde_i; //起头页数

private $myde_en; //结尾页数

private $myde_url; //获取当前的url

/*

* $show_pages

* 页面显示的格式,显示链接的页数为2*$show_pages+1。

* 如$show_pages=2那么页面上显示就是[首页] [上页] 1 2 3 4 5 [下页] [尾页]

*/

private $show_pages;

public function __construct($myde_total = 1, $myde_size = 1, $myde_page = 1, $myde_url, $show_pages = 2) {

$this->myde_total = $this->numeric($myde_total);

$this->myde_size = $this->numeric($myde_size);

$this->myde_page = $this->numeric($myde_page);

$this->myde_page_count = ceil($this->myde_total / $this->myde_size);

$this->myde_url = $myde_url;

if ($this->myde_total < 0)

$this->myde_total = 0;

if ($this->myde_page < 1)

$this->myde_page = 1;

if ($this->myde_page_count < 1)

$this->myde_page_count = 1;

if ($this->myde_page > $this->myde_page_count)

$this->myde_page = $this->myde_page_count;

$this->limit = ($this->myde_page - 1) * $this->myde_size;

$this->myde_i = $this->myde_page - $show_pages;

$this->myde_en = $this->myde_page + $show_pages;

if ($this->myde_i < 1) {

$this->myde_en = $this->myde_en + (1 - $this->myde_i);

$this->myde_i = 1;

}

if ($this->myde_en > $this->myde_page_count) {

$this->myde_i = $this->myde_i - ($this->myde_en - $this->myde_page_count);

$this->myde_en = $this->myde_page_count;

}

if ($this->myde_i < 1)

$this->myde_i = 1;

}

//检测是否为数字

private function numeric($num) {

if (strlen($num)) {

if (!preg_match("/^[0-9]+$/", $num)) {

$num = 1;

} else {

$num = substr($num, 0, 11);

}

} else {

$num = 1;

}

return $num;

}

//地址替换

private function page_replace($page) {

return str_replace("{page}", $page, $this->myde_url);

}

//首页

private function myde_home() {

if ($this->myde_page != 1) {

return "首页";

} else {

return "

首页

";

}

}

//上一页

private function myde_prev() {

if ($this->myde_page != 1) {

return "上一页";

} else {

return "

上一页

";

}

}

//下一页

private function myde_next() {

if ($this->myde_page != $this->myde_page_count) {

return "下一页";

} else {

return"

下一页

";

}

}

//尾页

private function myde_last() {

if ($this->myde_page != $this->myde_page_count) {

return "尾页";

} else {

return "

尾页

";

}

}

//输出

public function myde_write($id = 'page') {

$str = "

";

$str.=$this->myde_home();

$str.=$this->myde_prev();

if ($this->myde_i > 1) {

$str.="

...

";

}

for ($i = $this->myde_i; $i <= $this->myde_en; $i++) {

if ($i == $this->myde_page) {

$str.="$i";

} else {

$str.="$i";

}

}

if ($this->myde_en < $this->myde_page_count) {

$str.="

...

";

}

$str.=$this->myde_next();

$str.=$this->myde_last();

$str.="

" . $this->myde_page_count .

"页" . $this->myde_total . "条数据

";

$str.="

";

return $str;

}

}

?>

3. css样式

html, body, div, span, h1, h2, h3, h4, h5, h6, p, pre,

a, code, em, img, small, strong, sub, sup, u, i, center,

dl, dt, dd, ol, ul, li, fieldset, form, label {

margin: 0;

padding: 0;

border: 0;

outline: 0;

font-size: 100%;

vertical-align: baseline;

background: transparent

}

a {

color: #007bc4;

text-decoration: none;

cursor: pointer;

}

.table_parameters a:hover {

text-decoration: none

}

a:hover {

text-decoration: underline

}

ol, ul {

list-style: none

}

table {

border-collapse: collapse;

border-spacing: 0

}

/*html {*/

/*background: url(../images/demo_bg.png)*/

/*}*/

body {

height: 100%;

font: 12px/18px "Microsoft Yahei", Tahoma, Helvetica,

Arial, Verdana, "\5b8b\4f53", sans-serif;

color: #51555c

}

img {

border: 0;

cursor: pointer;

}

.clearfix:after {

visibility: hidden;

display: block;

font-size: 0;

content: " ";

clear: both;

height: 0

}

.head {

/*border-bottom: 1px solid #dadada;*/

padding: 0 0 5px

}

.head_inner {

margin: 0 auto;

width: 980px

}

.container {

width: 80%;

/*min-height: 600px;*/

margin: 30px auto 0 auto;

border: 1px solid #d3d3d3;

background: #fff;

-moz-border-radius: 5px;

-khtml-border-radius: 5px;

-webkit-border-radius: 5px;

border-radius: 5px

}

.demo > h2.title {

margin: 4px 0 30px;

padding: 15px 0 10px 20px;

border-bottom: 1px solid #d3d3d3;

font-size: 18px;

color: #a84c10;

background: url(../images/arrow.jpg) no-repeat 2px 14px

}

.foot {

height: 60px;

padding: 10px 2px;

line-height: 24px;

text-align: center

}

.foot a:hover {

color: #51555c

}

.btn {

-webkit-border-radius: 3px;

-moz-border-radius: 3px;

-ms-border-radius: 3px;

-o-border-radius: 3px;

border-radius: 3px;

background-color: #ff8400;

color: #fff;

display: inline-block;

height: 28px;

line-height: 28px;

text-align: center;

padding: 0 12px;

transition: background-color .2s linear 0s;

border: 0;

cursor: pointer

}

.btn:hover {

background-color: #e95a00;

text-decoration: none

}

.demo {

width: 700px;

margin: 0 auto

}

ul.ul_demo li {

background: url("../images/demo_icon.gif") no-repeat scroll 0 6px;

line-height: 28px;

padding-left: 20px

}

.input, .table input[type='text'] {

border: 1px solid #ccc;

padding: 0 5px;

width: 220px;

height: 26px;

line-height: 26px

}

#nav {

float: right;

margin: 30px 0 0

}

#nav li {

float: left;

font-size: 16px;

margin-right: 20px

}

.btn.loading {

opacity: .5

}

h3 a.cur {

color: #f30;

}

.demo h3 a {

font-size: 14px;

margin: 0 10px 5px 0;

display: inline-block

}

.red {

color: red

}

.notice {

font-size: 14px;

margin-bottom: 10px;

}

.table_parameters {

border-left: 1px solid #d3d3d3;

border-top: 1px solid #d3d3d3;

margin: 6px auto;

font-size: 14px

}

.table_parameters tr.tr_head {

background: none repeat scroll 0 0 #f7f7f7;

font-weight: bold;

padding: 6px;

text-align: center

}

.table_parameters td, .table_parameters th {

border-bottom: 1px solid #d3d3d3;

border-right: 1px solid #d3d3d3;

line-height: 26px;

padding: 2px

}

h1 {

font: 32px "Microsoft Yahei";

margin: 40px auto;

text-align: center;

}

h2 {

font-size: 16px;

margin: 10px 0;

}

.menu {

height: 30px;

margin-bottom: 30px;

padding: 10px;

background-color: #f0f0f0;

text-align: center;

}

.menu a {

display: inline-block;

height: 30px;

padding: 0 20px;

line-height: 30px;

font-size: 14px;

color: #333;

text-decoration: none;

}

.menu a:hover {

color: #000;

background-color: #e9e9e9;

}

.menu .cur {

background-color: #ddd !important;

color: #000;

}

.vad a {

display: inline-block;

height: 36px;

line-height: 36px;

margin: 0 5px;

padding: 0 50px;

font-size: 14px;

text-align: center;

color: #eee;

text-decoration: none;

background-color: #222;

}

.vad a:hover {

color: #fff;

background-color: #000;

}

.thead {

width: 728px;

height: 90px;

margin: 0 auto;

}

textarea {

border: 1px solid #ccc;

font-size: 12px;

height: 100px;

line-height: 18px;

padding: 5px;

width: 300px;

}

.table td {

padding: 10px 0

}

.disabled {

opacity: .6;

filter: alpha(opacity=60)

}

.demo > p {

line-height: 30px;

font-size: 14px

}

.demo > p a {

font-size: 14px

}

.demo h3 {

font-size: 16px;

margin: 20px 0

}

select {

background-color: #fff;

background-position: right center;

background-repeat: no-repeat;

border: 1px solid #888;

border-radius: 3px;

box-sizing: border-box;

font: 12px/1.5 Tahoma, Arial, sans-serif;

height: 30px;

padding: 0 4px;

}

fieldset {

border: 1px solid #ccc;

border-radius: 5px;

margin: 1em 0;

padding: 10px 20px;

}

dl.row dt {

width: 2em;

}

dl.row dt {

clear: left;

float: left;

line-height: 30px;

padding: 5px;

text-align: right;

width: 6em;

}

dl.row dd {

float: left;

padding: 5px;

}

.pager {

text-align: right;

}

.pager a {

padding: 3px 8px;

margin-left: 3px;

line-height: 20px;

background: #f9f9f9;

border: 1px solid #DBDBDB;

text-decoration: none

}

.pager a:hover,

.pager a.current {

background-color: #7CD5B1;

color: #fff;

border: 1px solid #7CD5B1;

cursor: pointer;

}

.page {

text-align: center;

margin: 50px 0

}

.page a, .page span.prev_disabled {

border: 1px solid #ededed;

color: #3d3d3d;

font-weight: 700;

height: 35px;

line-height: 35px;

margin-left: 5px;

min-width: 9px;

padding: 0 13px;

text-align: center;

text-decoration: none;

vertical-align: top;

font-family: "simsun";

display: inline-block

}

.page span.prev_disabled {

cursor: default;

color: #ccc;

margin: 0 10px 0 0

}

.page a.current {

background-color: #f40;

border-color: #f40;

color: #fff;

font-weight: 700;

position: relative;

z-index: 1;

}

.page .extra {

display: inline-block;

margin-left: 10px;

height: 35px;

line-height: 35px;

color: #656565;

}

.page .page-num {

border: 1px solid #ededed;

height: 21px;

text-align: center;

width: 35px;

display: inline-block

}

.page .page-submit {

background-clip: padding-box;

border: 1px solid #ededed;

border-radius: 2px;

cursor: pointer;

height: 21px;

line-height: 21px;

text-align: center;

width: 43px;

display: inline-block

}

.page .page-submit:hover {

border-color: #f40;

color: #f40;

}

.page a:focus, .page a:hover {

border-color: #f40;

z-index: 1;

}

.loading {

margin: 30px 0;

text-align: center

}

p {

margin: 0

}

#page {

height: 40px;

padding: 20px 0px;

}

#page a {

display: block;

float: left;

margin-right: 10px;

padding: 2px 12px;

height: 24px;

border: 1px #cccccc solid;

background: #fff;

text-decoration: none;

color: #808080;

font-size: 12px;

line-height: 24px;

}

#page a:hover {

color: #077ee3;

border: 1px #077ee3 solid;

}

#page a.cur {

border: none;

background: #077ee3;

color: #fff;

}

#page p {

float: left;

padding: 2px 12px;

font-size: 12px;

height: 24px;

line-height: 24px;

color: #bbb;

border: 1px #ccc solid;

background: #fcfcfc;

margin-right: 8px;

}

#page p.pageRemark {

border-style: none;

background: none;

margin-right: 0px;

padding: 4px 0px;

color: #666;

}

#page p.pageRemark b {

color: red;

}

#page p.pageEllipsis {

border-style: none;

background: none;

padding: 4px 0px;

color: #808080;

}

.dates li {

font-size: 14px;

margin: 20px 0

}

.dates li span {

text-align: center

}

td {

font-size: 15px;

margin: 20px 0

}

希望本文所述对大家PHP程序设计有所帮助。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/473016.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ms agent

Microsoft Agent是微软公司于1997年9月发布的一项代理软件开发技术&#xff0c;而后被集成到Internet Explorer 4.0 Plus及更高版本中&#xff0c;目前版本为2.0&#xff0c;支持简体中文。作为一种软件代理工具&#xff0c;Agent以其强大的交互功能、鲜明的人性特点、优美的操…

无向图的深度优先遍历非递归_【数据结构图(一)】什么是图

一、什么是“图”(Graph) 表示“多对多”的关系包含一组顶点&#xff1a;通常用 V (Vertex) 表示顶点集合一组边&#xff1a;通常用 E (Edge) 表示边的集合无向边&#xff1a;(v, w) 有向边&#xff1a;不考虑重边和自回路二、抽象数据类型定义类型名称&#xff1a;图(Graph)数…

LeetCode 1744. 你能在你最喜欢的那天吃到你最喜欢的糖果吗?(前缀和)

文章目录1. 题目2. 解题1. 题目 给你一个下标从 0 开始的正整数数组 candiesCount &#xff0c;其中 candiesCount[i] 表示你拥有的第 i 类糖果的数目。 同时给你一个二维数组 queries &#xff0c;其中 queries[i] [favoriteTypei, favoriteDayi, dailyCapi] 。 你按照如下…

wdcp-apache开启KeepAlive提高响应速度

因为我们的网站&#xff0c;媒体文件&#xff0c;js文件&#xff0c;css文件等都在同一个服务器上&#xff0c;并且&#xff0c;我们网站有非常多的图片&#xff0c;所以当建立好tcp链接之后&#xff0c;不应该马上关闭连接&#xff0c;因为每建立一次连接还要进行dns解析&…

python的指针跟c的区别_ctypes中的LP_x*指针和*p指针有什么区别?(以及与结构的奇怪交互)...

我很难理解Python ctypes中LP_*(例如LP_c_char)和*\u p(例如c_char_p)指针之间的区别。是否有文件区分它们&#xff1f;在我所读到的关于*\p指针的一些信息表明它们更好(以某种未指明的方式)&#xff0c;但是当我试图将它们用作结构字段时&#xff0c;我会得到奇怪的行为。例如…

爱斯基摩结构

“爱斯基摩结构”&#xff1a;狗拉雪橇是生活在北极圈的爱斯基摩人最重要的运载工具。怎样才能让狗多拉快跑&#xff1f;爱斯基摩人将狗分成两个层次&#xff0c;前面是一只领狗&#xff0c;后头有&#xff2e;只力狗。他们给领狗制造许多特权&#xff1a;它单独享用食品&#…

如何将网页保存为图片_网页账号密码该如何保存?

我们在使用浏览器浏览一些网页的时候&#xff0c;需要输入我们的账号密码才能登陆&#xff0c;以保证安全。但是有时候浏览网页&#xff0c;不小心关掉了&#xff0c;重新打开时又要重新输入密码&#xff0c;这样会显得很繁琐。那么有什么办法能让网页记住我们的账号密码吗&…

scala学习-类与对象

类  /  对象 【《快学Scala》笔记】 一、类 1、Scala中的类是公有可见性的&#xff0c;且多个类可以包含在同一个源文件中&#xff1b; 1 class Counter{ 2 private var value 0  //类成员变量必须初始化&#xff0c;否则报错 3 4 def increment(){ //类中的…

LeetCode 1745. 回文串分割 IV(区间DP)

文章目录1. 题目2. 解题1. 题目 给你一个字符串 s &#xff0c;如果可以将它分割成三个 非空 回文子字符串&#xff0c;那么返回 true &#xff0c;否则返回 false 。 当一个字符串正着读和反着读是一模一样的&#xff0c;就称其为 回文字符串 。 示例 1&#xff1a; 输入&a…

字符指针与字符串变量的转换

VC.NET中的String类是利用Unicode字符集编码来表示文本。Unicode字符集中每个字符(汉字、英文字母)都占2个字节&#xff0c;且其字符串是以2个连续的/0结尾的。 ANSI的ASCII字符集是最常见的字符集&#xff0c;常用于表示txt的文本文件。在ASCII字符集中英文占一个字节&#…

直方图均衡 视觉显著_视觉图像:对比度受限直方图均衡化CLAHE

CLAHE源码解析&#xff1a;ContrastLimitAHE .h&#xff1a;#ifndef _CONTRAST_LIMIT_AHE_H_#define _CONTRAST_LIMIT_AHE_H_#include "stdafx.h"#include using namespace std;class ContrastLimitAHE{public:ContrastLimitAHE();~ContrastLimitAHE();int m_nGridX;…

5000并发的qps是多少_高并发架构设计

点击蓝字&#xff0c;关注我们01概述高并发(High Concurrency)是互联网分布式系统架构设计中必须考虑的因素之一&#xff0c;它通常是指&#xff0c;通过设计保证系统能够同时并行处理很多请求。高并发一方面可以提高资源利用率&#xff0c;加快系统响应速度&#xff0c;但是同…

TensorFlow 2.0 - tf.data.Dataset 数据预处理 猫狗分类

文章目录1 tf.data.Dataset.from_tensor_slices() 数据集建立2. Dataset.map(f) 数据集预处理3. Dataset.prefetch() 并行处理4. for 循环获取数据5. 例子: 猫狗分类学习于&#xff1a;简单粗暴 TensorFlow 2 1 tf.data.Dataset.from_tensor_slices() 数据集建立 tf.data.Dat…

一个使用指针的简单程序

一个使用指针的简单程序 /*一个使用指针的简单程序*/ #include <stdio.h> void main(){ int number 0; //一个出初始化为0的整形变量 int *pointer NULL; //一个可以指向int类型的指针 number 10; printf("\nnumber的地址为:%p",&number); //输出地址…

flutter 图解_【Flutter 专题】83 图解自定义 ACEWave 波浪 Widget (一)

和尚今天尝试一下绘制波浪的效果&#xff0c;虽然 pub 仓库中已经有成熟的插件&#xff0c;但和尚还是准备用之前学习的 Canvas 和 Animation 尝试自定义一个 ACEWave&#xff1b;1. 绘制曲线绘制波浪首先需要绘制曲线&#xff0c;采用 Canvas 绘制贝塞尔曲线&#xff1b;常用的…

c++ 不插入重复元素但也不排序_面试时写不出排序算法?看这篇就够了

小Hub领读&#xff1a;本文主要详细讲述常见的八种排序算法的思想、实现以及复杂度。包括冒泡排序、快速排序、插入排序、希尔排序等等&#xff0c;文章讲解非常详细&#xff01;作者&#xff1a;静默虚空https://juejin.im/post/5cb6b8f551882532c334bcf2本文已归档到&#xf…

Linux 下用C语言连接 sqlite

1.在 /home/ 新建一个文件夹名为 sqlite #cd /home #mkdir sqlite 2.编写C语言代码&#xff0c;名称为 sql.c&#xff0c;代码如下 // name&#xff1a; sql.c // This prog is used to test C/C API for sqlite3.It is very simple,ha! // Author : zieckey All rights rese…

c2c旅游springboot开源_重量级开源的商城和SpringBoot等项目看看有没有正好是你需要的...

1. JavaGuideGithub地址&#xff1a; 同下star: 18.2k介绍: 【Java学习 面试指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。2. mallGithub地址&#xff1a; 同下star: 3.3k介绍: mall项目是一套电商系统&#xff0c;包括前台商城系统及后台管理系统&#xff0c;基于Sp…

LintCode 1816. 使结果不超过阈值的最小除数(二分查找)

文章目录1. 题目2. 解题1. 题目 描述 给你一个整数数组 nums 和一个正整数 threshold &#xff0c;你需要选择一个正整数作为除数&#xff0c;然后将数组里每个数都除以它&#xff0c;并对除法结果求和。 请你找出能够使上述结果小于等于阈值 threshold 的除数中 最小 的那个…

马里兰大学calce电池循环测试数据集_千次循环,全程1.5V恒压,紫米新一代充电锂电池套装上手体验...

电池应该是每个家庭都会用到的东西&#xff0c;在现在智能家电飞迅发展的当下更是如此&#xff0c;比如智能门锁、智能门铃&#xff0c;都需要电池的供电&#xff0c;才能正常使用。而普通碱电池在电量耗尽后就无法循环使用&#xff0c;所以为了能节省成本减少电池对环境的污染…