标签:list log think his 输出 array nbsp php 实现
直接可以调用tp框架的内置函数类
//列表数组分页 $count=count($newsList); $Page=new \Think\Page($count,4); $show = $Page->show(); $list=array_slice($newsList,$Page->firstRow,$Page->listRows); $this->assign(‘list‘,$list);// 赋值数据集 $this->assign(‘page‘,$show);// 赋值分页输出
这样的话就可以了
标签:list log think his 输出 array nbsp php 实现
原文地址:http://www.cnblogs.com/hopelooking/p/7412456.html