本文实例讲述了Laravel框架实现的记录sql日志功能。分享给大家供大家参考,具体如下:
在项目开发过程中或者是性能优化中,经常会有要查看执行sql的情况,然而Laravel日志默认不记录执行sql。好在留有相关接口,我们可以很方便的就是想sql日志功能。
在
新建sqlListener监听器 [
'App\Listeners\EventListener',],// 新增sqlListener监听QueryExecuted
'Illuminate\Database\Events\QueryExecuted' => [
'App\Listeners\sqlListener',];
方法1
,手动创建,在sqlListener.PHP 文件,内容如下
PHP;">
namespace App\Listeners;
use Illuminate\Database\Events\QueryExecuted;
class sqlListener {
/**
* Create the event listener.
*
* @return void
*/
public function __construct() {
//
}
/**
* Handle the event.
*
* @param =QueryExecuted $event
* @return void
*/
public function handle(QueryExecuted $event) {
// 在这里编写业务逻辑
}
}
方法2
,使用命令行创建,命令如下sql);
$log = vsprintf($sql,$event->bindings);
$log = '[' . date('Y-m-d H:i:s') . '] ' . $log . "\r\n";
$filepath = storage_path('logs\sql.log');
file_put_contents($filepath,$log,FILE_APPEND);
// 这里也可以直接用Log::info() 里的函数,只是这样会和其他调试信息掺在一起。
// 如果要用Log里的函数,别忘记了引入Log类。
}
更多关于Laravel相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。
原文链接:https://www.f2er.com/laravel/15889.html