Home >php教程 >php手册 >给何版主, 机器民主和lilyxie: 关于分页机制.

给何版主, 机器民主和lilyxie: 关于分页机制.

WBOY
WBOYOriginal
2016-06-21 09:13:421029browse

分页

1. 分页的前提是记录按id排序, 且不连续, 比如有些记录被删除,
   或者要分页显示查找结果, 这样就有了除分页外的条件$q
2. 确定分页的方式:
(1): 用简单的"页首, 上一页, 下一页".
(2): 用"1,2,3,4,5,6,..........末尾"来指定跳到某页.
3. 实现分析:
(1) 如果先查询全部结果, 只显示其中的部分. 这种方式显然不好,
    会累坏server.
(2) 对于用limit m,n实现分页, 有些不负责, 服务器在实际操作时还是
    按$q条件找出所有结果, 然后只返回m后的n条. server工作仍然很多.
(3) 优化的办法是知道要显示页的起始$id, 查询
   "where $q and id>=$id order by id desc limit 0,$page_length"
   这样mysql 会先按id的索引找到符合条件的id, 然后再评估$q.
(4) 那$id怎么来呢?
(5) 对于显示方式1, 每页多查询一条,最后一个记录的$id就是啦
    "where $q and id>=$id order by id limit 0,$page_length+1"
    if (mysql_num_rows($result) > $page_length) echo "下一页"
   //(记住最后一条记录不要显示!)
   //如果不使用第二种分页方式, 到此结束.
(5) 对于显示方式2, 后面$page_offset=6页的每页起始id要一次知道.
"select id from xxxx where $q order by id desc limit 0,$page_length*$page_offset"
for($i=0;$i*$page_length    $start=mysql_result($result,$i*$page_length,0);
    echo '";
    if ($id==$start) echo "$i"; //加重显示当前页号
    else echo $i;
    echo "
";
}
(6)也许有人要问server不是按$q条件把所有这几页都搜一遍了吗?
和"limit 0,$page_length*$pageno"有什么区别? 直接用$pageno哪有$id这么麻烦?
答案是可以利用session功能存起来这个结果, 如果$q没有变, 就可以直接调用,
省得每次换页都折腾数据库.
加上后续页面判断, 上面的例子就变成:
//如果$q没有变化
$page_offset=6;
session_register($ids);
if (!$ids){//后序页面不会执行
    "select id from xxxx where $q order by id desc limit 0,$page_length*$page_offset+1";//判断有无后序页面
    for($i=0;$i*$page_length        $ids[]=mysql_result($result,$i*$page_length,0);
    }
}
//有乐$ids......
for ($i=0;$i    echo '';
    if ($d==$ids[$i]) echo "$i"; //加重显示当前页号
    else echo $i;
    echo "
";
}
//下面这句自由发挥, 可以切换到分页模式1
if ($ids[$page_offset])
    echo '....';
(8) 以上结果稍加改动, 可以session_resiter($pageno), 来记录当前是第几
大页. 类似快进功能.
(7) 不知道php4正式版是否支持session中存放数组, 如果不行建议用
implode/explode来变成字串保存.
(8) 这种方式的优点应该是速度快, 但缺点是不知道总共符合$q条件的数量.
对于搜索庞大的数据库应该有用.
(9) 实现"跳至末尾", 可以在以上sql语句中 order by id, 不要desc. 同理可实现
前面第N页.
4 以上代码还都是设想, 希望各位多多指正.
5 本文中心思想是利用id索引和id的偏移来快速查找后序内容, 节省数据库开销.



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