-
一款php分页代码
以前写过很多php 分页类但是今天这款分页程序我感觉是很好的,简洁实用,代码合理并没有多余的代码,是一款不错分页类函数哦。
- class multipage {
- var $total;
- var $perpage;
- var $pages;
- var $maxpage;
- var $offset = 9;
- var $curr_page;
- function init($total, $perpage, $maxpage) { //初始化页数
- $this->total;
- $this->perpage;
- $this->maxpage;
- $this->offset = 9;
- }
- function getpagelist() {//获取分页列表
- $result_pages = "";
- $this->pages = ceil($this->total / $this->perpage);
- if ($this->pages > $this->maxpage) {
- $from = $this->curr_page - $this->offset;
- if ($from < 1) {
- $from = 1;
- }
- $to = $from + $this->maxpage - 1;
- if ($to > $this->pages) {
- $to = $this->pages;
- if (($to - $from) < $this->maxpage) {
- $from = $from - 1;
- }
- }
- } else {
- $from = 1;
- $to = $this->pages;
- }
- $p = 0;
- for($i = $from; $i <= $to; $i++) {
- $result_pages[$p] = $i;
- $p++;
- }
- return $result_pages;
- }
- function getfirst() { //获取第一页
- if ($this->curr_page > 1 && $this->pages > 1) {
- return 1;
- } else {
- return "";
- }
- }
- function getlast() { //取末页
- if ($this->pages > 1 && $this->curr_page < $this->pages) {
- return $this->pages;
- } else {
- return "";
- }
- }
- function getprev() {//上一页
- $prevpage = $this->curr_page - 1;
- if ($prevpage > 0) {
- return $prevpage;
- } else {
- $prevpage = "";
- return $prevpage;
- }
- }
- function getnext() {//下一页
- $nextpage = $this->curr_page + 1;
- if ($nextpage <= $this->pages) {
- return $nextpage;
- } else {
- $nextpage = "";
- return $nextpage;
- }
- }
- function gettotal() {//共多少页
- if ($this->pages > 0) {
- return $this->pages;
- } else {
- return 1;
- }
- }
- }
- //分页类的使用方法
- $page = new multipage();
- $page->gettotal(); //总页娄
- $page->getnext();//下一页
出处:http://www.phpfensi.com/php/20131216/954.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式