Zebra_Pagination PHP分页类开源项目

我要开发同款
匿名用户2011年03月20日
24阅读
开发技术PHP
所属分类程序开发、常用工具包
授权协议GPLv3

作品详情

Zebra_Pagination是一个通用的PHP类,用来根据记录数和每页显示数自动生成分页链接。

示例代码:

<?php//let'spaginatedatafromanarray...$countries=array(//arrayofcountries);//howmanyrecordsshouldbedisplayedonapage?$records_per_page=10;//includethepaginationclassrequire'path/to/Zebra_Pagination.php';//instantiatethepaginationobject$pagination=newZebra_Pagination();//thenumberoftotalrecordsisthenumberofrecordsinthearray$pagination->records(count($countries));//recordsperpage$pagination->records_per_page($records_per_page);//here'sthemagick:weneedtodisplay*only*therecordsforthecurrentpage$countries=array_slice($countries,(($pagination->get_page()-1)*$records_per_page),$records_per_page);?><table><tr><th>Country</th></tr><?phpforeach($countriesas$index=>$country):?><tr<?phpecho$index%2?'class="even"':'')?>><td><?phpecho$country?></td></tr><?phpendforeach?></table><?php//renderthepaginationlinks$pagination->render();?>

声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论