模型查询对象类型转数组
DB操作返回是数组。模型直接操作返回是对象;
对象类型转换数组的方法也太简单了:
打开 database.php 增加或修改参数
'resultset_type' => '\think\Collection',
完成:
即可连贯操作
model('user')->select()->toArray()
=============================================
DB操作返回是数组。模型直接操作返回是对象;
对象类型转换数组的方法也太简单了:
打开 database.php 增加或修改参数
'resultset_type' => '\think\Collection',
完成:
即可连贯操作
model('user')->select()->toArray()
=============================================