public function showSql(){
DB::enableQueryLog();
DB::select("select * from user");
return response()->json(DB::getQueryLog());
}
直接返回所有执行的sql语句。
public function showSql(){
DB::enableQueryLog();
DB::select("select * from user");
return response()->json(DB::getQueryLog());
}
直接返回所有执行的sql语句。
本文标题:laravel输出执行sql语句
本文链接:https://www.haomeiwen.com/subject/jpjwbxtx.html
网友评论