博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
phpcms v9 自定义伪静态的分页函数
阅读量:5937 次
发布时间:2019-06-19

本文共 2267 字,大约阅读时间需要 7 分钟。

因为。这个页面还没做好。。等做好了。。再给大家演示。。。。。。调用方法:$page_attr=pages_open($num[0]['cun'],$get_page,$max_page,'http://wuhan.qunaerwan.com/jingdian-'.$pieces[0].'-'.$pieces[1].'-'.$pieces[2].'-'.$pieces[3].'-'.$pieces[4].'-'.$pieces[5].'-'.$key.'-');/*** 自定义伪静态的分页函数。** @param $num 信息总数* @param $curr_page 当前分页* @param $perpage 每页显示数* @param $urlrule URL规则* @param $array 需要传递的数组,用于增加额外的方法* @return 分页*/function pages_open($num, $curr_page, $perpage = 20, $urlrule = '', $array = array(),$setpages = 10){    $multipage = '';    if($num > $perpage) {        $page = $setpages+1;        $offset = ceil($setpages/2-1);        $pages = ceil($num / $perpage);        if (defined('IN_ADMIN') && !defined('PAGES')) define('PAGES', $pages);        $from = $curr_page - $offset;        $to = $curr_page + $offset;        $more = 0;        if($page >= $pages) {            $from = 2;            $to = $pages-1;        } else {            if($from <= 1) {                $to = $page-1;                $from = 2;            }  elseif($to >= $pages) {                $from = $pages-($page-2);                $to = $pages-1;            }            $more = 1;        }        $multipage .= ''.$num.L('page_item').'';                      if($curr_page>0) {                                if($curr_page==1) {            $multipage .= ' '.L('previous').'';                $multipage .= ' 1';            } elseif($curr_page>6 && $more) {            $multipage .= ' '.L('previous').'';                $multipage .= ' 1..';            } else {            $multipage .= ' '.L('previous').'';                $multipage .= ' 1';            }        }                for($i = $from; $i <= $to; $i++) {            if($i != $curr_page) {                $multipage .= ' '.$i.'';            } else {                $multipage .= ' '.$i.'';            }        }                if($curr_page<$pages) {            if($curr_page<$pages-5 && $more) {                $multipage .= ' ..'.$pages.' '.L('next').'';            } else {                $multipage .= ' '.$pages.' '.L('next').'';            }        } elseif($curr_page==$pages) {            $multipage .= ' '.$pages.' '.L('next').'';        } else {            $multipage .= ' '.$pages.' '.L('next').'';        }                    }    return $multipage;}

 

转载地址:http://yyvtx.baihongyu.com/

你可能感兴趣的文章
(原創) array可以使用reference方式傳進function嗎? (C/C++)
查看>>
STM32F103--(二) GPIO实践
查看>>
关于开源无线路由器的资料
查看>>
Oracle 分页
查看>>
170多个Ionic Framework学习资源(转载)
查看>>
Azure:不能把同一个certificate同时用于Azure Management和RDP
查看>>
STL priority_queue sort 自定义比较终极模板
查看>>
Silverlight 控件的验证
查看>>
使用NET USE将USB端口模拟为LPT1
查看>>
Directx11教程(15) D3D11管线(4)
查看>>
Microsoft Excel软件打开文件出现文件的格式与文件扩展名指定格式不一致?
查看>>
ios ble 参考
查看>>
[转]Pass a ViewBag instance to a HiddenFor field in Razor
查看>>
linux中注册系统服务—service命令的原理通俗
查看>>
基于托管C++的增删改查及异步回调小程序
查看>>
Oracle DBMS_STATS 包 和 Analyze 命令的区别
查看>>
给Visual Studio 2010中文版添加Windows Phone 7模板
查看>>
linux下基本命令
查看>>
windows server 2008R2 上安装配置freesshd
查看>>
手动删除SVCH0ST.EXE的方法
查看>>