tp5将查询数据返回为对象转为数组
Posted yulongcode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5将查询数据返回为对象转为数组相关的知识,希望对你有一定的参考价值。
use think\Model; collection()->toArray(); $result = collection(model("Menu")->order("listorder asc,id asc")->select())->toArray(); 或是在模型里写 namespace app\admin\model; class Menu extends \think\Model protected $resultSetType = ‘collection‘; 控制器 $result = model("Menu")->order("listorder asc,id asc")->select()->toArray();
参考tp5官方网站论坛:http://www.thinkphp.cn/topic/47321.html
以上是关于tp5将查询数据返回为对象转为数组的主要内容,如果未能解决你的问题,请参考以下文章