laravel中查询数据结果集变为数组

$member = Db::table('member')->orderBy('id' ,'asc')->get()->map(function ($value) {
            return (array)$value;
        })->toArray();

 

转载于:https://www.cnblogs.com/xqdphp/p/9144421.html

你可能感兴趣的:(laravel中查询数据结果集变为数组)