DB::table()->get()方式如何得到数组而不是对象?
认证高级PHP讲师
试看看?
$result = DB::table()->get(); $result = $result->toArray();
或者
DB::table()->get()->toArray();
试看看?
或者