首页 > 作文

php实现分页功能的3种方法第1/3页

更新时间:2023-04-06 18:07:19 阅读: 评论:0

直接上代码,希望大家仔细阅读。

方法一:讲sql查询进行分页进行,需要调用几个函数,具体见脚本:
1.pager.class.php

<?php    class pager {    public $sql; //sql查询语句    public $datanum; //查询所有的数据总记录数    public $page_size; //每页显示记录的条数    protected $_errstr;    protected $_conn;    protected $_query_id;    public function query($query)///这个函数有问题,暂时可以不用    {    $ret = fal;    if (!empty($query)) {      if ($this->_conn === fal || !is_resource($this->_conn)) {       warninglog(__method__ . ': query sql with no connection', true);      return fal;      }    $this->_query_id = @mysql_query($query, $this->_conn);    if ($this->_query_id === fal) {    $this->_errstr = @mysql_error();    $ret = fal;     } el {    $this->_errstr = 'success';    $ret = $this->_query_id;      }    }     $msg = ($ret === fal) ? 'fal' : strval($ret);     debuglog(__method__.": [$msg] returned for sql query [$query]");    return $ret;    }function __construct($sql,$page_size) {      $result = mysql_query($sql);      $datanum = mysql_num_rows($result);      $this->sql=$sql;      $this->datanum=$datanum;      $this->page_size=$page_size;    }    //当前页数    public function page_id() {      if($_rver['query_string'] == ""){        retu上海财经大学排名rn 1;      }elif(substr_count($_rver['query_string'],"page_id=") == 0){        return 1;      }el{        return intval(substr($_rver['query_string'],8));      }    }    //剩余url值    public function url() {      if($_rver['query_string'] == ""){        return "";      }elif(substr_count($_rver['query_string'],"page_id=") == 0){        return "&".$_rver['query_string'];      }el{        return str_replace("page_id=".$this->page_id(),"",$_rver['query_string']);      }    }    //总页数    public function page_num() {      if($this->datanum == 0){        return 1;      }el{        return ceil($this->datanum/$this->page_size);      }    }//数据库查询的偏移量    public function start() {      return ($this->page_id()-1)*$this->page_size;    }    //数据输出    public function sqlquery() {      return $this->sql." lim卫兰好听的歌it ".$this->start().",".$this->page_size;    }    //获取当前文件名    private function php_lf() {      return $_rver['php_lf'];    }    //上一页    private function pre_page() {      if ($this->page_id() == 学打字练打字1) { //页数等于1        return "<a href=".$this->php_lf()."?page_id=1".$this->url().">上一页</a> ";      }elif ($this->page_id() != 1) { //页数不等于1        return "<a href=".$this->php_lf()."?page_id=".($this->page_id()-1).$this->url().">上一页</a> ";      }    }    //显示分页    private function display_page() {      $display_page = "";      if($this->page_num() <= 10){ //小于10页        for ($i=1;$i<=$this->page_num();$i++) //循环显示出页面          $display_page .= "<a href=".$this->php_lf()."?page_id=".$i.$this->url().">".$i."</a> ";          return $display_page;      }elif($this->page_num() > 10){ //大于10页        if($this->page_id() <= 6){          for ($i=1;$i<=10;$i++) //循环显示出页面            $display_page .= "<a href=".$this->php_lf()."?page_id=".$i.$this->url().">".$i."</a> ";            return $display_page;        }elif(($this->page_id() > 6) && ($this->page_num()-$this->page_id() >= 4)){          for ($i=$this->page_id()-5;$i<=$this->page_id()+4;$i++) //循环显示出页面            $display_page .= "<a href=".$this->php_lf()."?page_id=".$i.$this->url().">".$i."</a> "; return $display_page;        }elif(($this->page_id() > 6) && ($this->page_num()-$this->page_id() < 4)){          for ($i=$this->page_num()-9;$i<=$this->page_num();$i++) //循环显示出页面            $display_page .= "<a href=".$this->php_lf()."?page_id=".$i.$this->url().">".$i."</a> ";            return $display_page;        }      }    }    //下一页    private function next_page() {      if ($this->page_id() < $this->page_num()) { //页数小于总页数        return "<a href=".$this->php_lf()."?page_id=".($this->page_id()+1).$this->url().">下一页</a> ";      }elif ($this->page_id() == $this->page_num()) { //页数等于总页数        return "<a href=".$this->php_lf()."?page_id=".$this->page_num().$this->url().">下一页</a> ";      }    }    // 设置分页信息    public function t_page_info() {      $page_info = "共".$this->datanum."条 ";      $page_info .= "<a href=".$this->php_lf()."?page_id=1".$this->url().">首页</a> ";      $page_info .= $this->pre_page();      $page_info .= $this->display_pa高炉炼铁ge();      $page_info .= $this->next_page();      $page_info .= "<a href=".$this->php_lf()."?page_id=".$this->page_num().$this->url().">尾页</a> ";      $page_info .= "第".$this->page_id()."/".$this->page_num()."页";      return $page_info;    }  }?>

2.脚本2:

<?php  //类的用法  // 读取分页类  include("pager.class.php");  // 数据库连接初始化//  $db = new mysql();  $impeach_host = '10.81.43.139';  $impeach_usr = 'vmtest15';  $impeach_passwd = 'vmtest15';  $impeach_name = 'ufeature';  $impeach_con = mysql_connect($impeach_host, $impeach_usr, $impeach_passwd) or    die("can't connect ".mysql_error());  mysql_lect_db($impeach_name, $impeach_con);  // 这是一个sql查询语句,并得到查询结果  $sql = "lect word from ufeature.spam_accu_word_list where flag='0'";  // 分页初始化  $page = new pager($sql,20);  // 20是每页显示的数量  // $res_1 = mysql_query($sql) or  //    die("can't get result ".mysql_error());   $result=mysql_query($page->sqlquery());while($info = mysql_fetch_array($result,mysql_assoc)){  // while($info = mysql_fetch_array($res_1, mysql_assoc)){  echo $info["word"]."<br/>";  }  // 页码索引条  echo $page->t_page_info();?>

方法二:使用ajax的方法
1、首先了解sql语句中的limit用法

lect * from table …… limit 开始位置 , 操作条数 (其中开始位置是从0开始的)

例子
取前20条记录:lect * from table …… limit 0 , 20
从第11条开始取20条记录:lect * from table …… limit 10 , 20
limit n 等价于 limit 0,n。
lect * from table limit 5; //返回前5行, lect * from table limit 0,5一样
2、分页原理

所谓分页显示,也就是讲数据库中的结果集,一段一段显示出来
怎么分段,当前在第几段 (每页有几条,当前再第几页)
前10条记录:lect * from table limit 0,10
第11至20条记录:lect * from table limit 10,10
第21至30条记录:lect * from table limit 20,10
分页公式:
(当前页数 – 1 )x 每页条数 , 每页条数

lect * from table limit ($page- 1) * $pagesize, $pagesize 

3、$_rver[“request_uri”]函数
预定义服务器变量的一种,所有$_rver开头的都叫做预定于服务器变量。
request_uri的作用是取得当前uri,也就除域名外后面的完整的地址路径。
例子:
当前页为:http://www.test.com/home.php?id=23&cid=22
echo $_rver[“request_uri”]
结果为:/home.php?id=23&cid=22
4、par_url()解析url函数
par_url() 是讲url解析成有固定键值的数组的函数
例子

$ua=par_url("http://urname:password@hostname/path?arg=value#anchor");print_r($ua);

结果:

array( [scheme] => http  ;协议 [host] => hostname  ;主机域名 [ur] => urname  ;用户 [pass] => password  ;密码 [path] => /path   ;路径 [query] => arg=value  ;取参数 [fragment] => anchor  ;)

5、代码实例
这个一个留言的分页,分为3个部分,一个是数据库设计,一个是连接页面,一个是显示页面。
(1)设计数据库
设计数据库名为bbs,有一个数据表为message,里面包含title,lastdate,ur,content等字段,分别表示留言标题,留言日前,留言人,留言的内容
(2)连接页面

<?php$conn = @ mysql_connect("localhost", "root", "123456") or die("数据库链接错误");mysql_lect_db("bbs", $conn);mysql_query("t names 'gbk'"); //使用gbk中文编码;//将空格,换行转换为html可解析function htmtocode($content) { $content = str_replace("\n", "<br>", str_replace(" ", "", $content)); //两个str_replace嵌套 return $content;}//$content=str_replace("'","‘",$content); //htmlspecialchars(); ?>

(3)显示页面

<?php include("conn.php");$pagesize=2; //设置每页显示2个记录$url=$_rver["request_uri"]; $url=par_url($url);$url=$url[path];$numq=mysql_query("lect * from `message`");$num = mysql_num_rows($numq);if($_get            123下一页阅读全文            您可能感兴趣的文章:功能强大的php分页函数基于php实现数据分页显示功能php框架laravel插件pagination实现自定义分页php mssql 分页实例php+ajax实现无刷新分页两款万能的php分页类php分页原理 分页代码 分页类制作教程        

分页

相关文章

php中的mvc模式运用技巧

php中的mvc模式运用技巧… 2007-05-05

php 5.0对象模型深度探索之属性和方法

一个对象实例的属性是变量,就像php的其他变量一样。但是你必须使用->运算符来引用它们。不需要在属性前使用美元符中国梦的意义$。 2008-03-03

php 引用文件技巧

最近在学php,习惯性的喜欢把它与.net作些比较,发现其中一个不同就是对其他文件中对象的引用问题。 2010-03-03

php中定时计划任务的实现原理,需要的朋友可以参考下 2013-01-01

总结一些php中好用但又容易忽略的小知识

这篇文章主要给大家总结了一些在日常工作发现的,php中好用但又容易被人们忽略的小知识,例如php函数之判断函数是否存在、php函数之可变函数等等,需要的朋友们下面跟着www.887551.com来一起看看详细的介绍吧。 2017-06-06

这篇文章主要介绍了php生成二维码时出现中文乱码的解决方法,较为详细的分析了php生成二维码的方法,以及出现乱码时的解决方法,具有一定的参考借鉴价值,需要的朋友可以参考下 2014-12-12

php简单字符串过滤方法示例

这篇文章主要介绍了php简单字符串过滤方法,结合实例形式分析了php通过对字符串中特殊字符进行正则替换实现字符过滤功能的简单操作技巧,需要的朋友可以参考下 2016-09-09

php实现生成推广海报的方法详解

这篇文章主要介绍了php实现生成推广海报的方法,结合具体实例形式详细分析了php图片生成的相关操作技巧与相关注意事项,需要的朋友可以参考下 2018-03-03

这篇文章主要介绍了php新浪微博登录接口用法,以实例形式分析了新浪微博接口的申请与具体使用技巧,具有一定的参考借鉴价值,需要的朋友可以参考下 2014-12-12

最近前台有个开票系统需要改进导致需要用php去连接那个系统的 数据库,access的带密码的。写了个简单的实例,记录下。 2008-05-05

最新评论

本文发布于:2023-04-06 18:07:08,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/bb9b21f3f5355128e4728d6ed2781604.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:php实现分页功能的3种方法第1/3页.doc

本文 PDF 下载地址:php实现分页功能的3种方法第1/3页.pdf

下一篇:返回列表
标签:分页   函数   页数   每页
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图