laravel 获取sql语句

    DB::connection()->enableQueryLog();#开启执行日志
    $count = DB::table('test')     //执行查询
    ->whereNull('deleted_at')
    ->where('id', '=', 3)
    ->where('Name', '=', '测试')
    ->count();
    print_r(DB::getQueryLog()); //获取查询语句、参数和执行时间

 

 

posted @ 2019-04-17 13:29  phpwyl  阅读(5684)  评论(0)    收藏  举报