Laravel DB输出原生sql查询语句
2017-01-16 本文已影响0人
limgquan
DB::connection()->enableQueryLog();
DB::table('students')->select('id','name','age')->get();
$log = DB::getQueryLog();dd($log);
DB::connection()->enableQueryLog();
DB::table('students')->select('id','name','age')->get();
$log = DB::getQueryLog();dd($log);