解决tp5框架Indirect modification of overloaded element of think\paginator\driver\Bootstrap has no effect错误
thinkphp5使用paginator分页查询数据后,需要foreach便利处理某一字段的数据,会出现类似题目的错误。解决方法:有3种,一直是利用模型修改器,另一种是使用each(function($item, $key){})和继续使用foreach1、each()具体使用方法:<?php
$article=db('article')
;;;;;;;->order('addtime;desc')
;;;;;;;->paginate(22)->each(function($item,;$key){
;;;;;;;;$item['tags'];=;$this->getTags($item['tags']);
;;;;;;;;return;$item;
;;;;;;;;});
?>2、继续使用foreach<?php