Home  >  Article  >  php教程  >  thinkphp对数组进行分页输出

thinkphp对数组进行分页输出

WBOY
WBOYOriginal
2016-06-07 11:37:411089browse

开发过程中遇到数组分页的问题,这里分享一下
mport('ORG.Util.Page');// 导入分页类
$count=count($newarray_1);//得到数组元素个数
$Page= new Page($count,25);// 实例化分页类 传入总记录数和每页显示的记录数
$newarray_1 = array_slice($newarray_1,$Page->firstRow,$Page->listRows);
$show= $Page->show();// 分页显示输出
//print_r($newarray_1);
$this->assign("rs",$newarray_1);
$this->assign('page',$show);// 赋值分页输出
$this->display();

AD:真正免费,域名+虚机+企业邮箱=0元

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