TP框架数组去重后分页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TP框架数组去重后分页相关的知识,希望对你有一定的参考价值。
$view = D(‘HistoryTest‘) ->alias("as a") ->join("qxy_test as b on a.object = b.id") ->field("b.title,b.id,a.uid") ->order(‘a.id desc‘) ->where("a.title like ‘%".$key."%‘") ->select(); $view = $this->multi_unique($view); //调用去重方法 $count = count($view); $Page = new \Think\Page($count,5); //每页显示条数 $view = array_slice($view, $Page->firstRow,$Page->listRows); //分组函数 $show = $Page->show(); //显示分页 $this->sear = $view; //发送变量 $this->page = $show; public function multi_unique($array) { //数组去重方法 foreach ($array as $k=>$na) $new[$k] = serialize($na); $uniq = array_unique($new); foreach($uniq as $k=>$ser) $data[$k] = unserialize($ser); return ($data); }
以上是关于TP框架数组去重后分页的主要内容,如果未能解决你的问题,请参考以下文章