当前位置: 代码迷 >> 综合 >> thinkphp5 对象转数组
  详细解决方案

thinkphp5 对象转数组

热度:16   发布时间:2023-11-16 22:21:14.0
DB操作返回是数组。模型直接操作返回是对象 
对象类型转换数组
打开 database.php 增加或修改参数
'resultset_type' => '\think\Collection',
即可连贯操作
model('user')->select()->toArray()