码迷,mamicode.com
首页 > 数据库 > 详细

通过event记录sql

时间:2019-04-09 15:12:03      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:binding   void   ted   log   tab   tis   space   添加   cti   

providers

EventServiceProvider.php 添加
protected $listen = [
        ‘Illuminate\Database\Events\QueryExecuted‘ => [
            ‘App\Listeners\QueryListener‘
        ] ,
    ];

  执行php artisan event:generate

会生成 

QueryListener.php文件
<?php

namespace App\Listeners;

use Illuminate\Database\Events\QueryExecuted;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Support\Facades\Log;

class QueryListener
{
    /**
     * Create the event listener.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Handle the event.
     *
     * @param  QueryExecuted  $event
     * @return void
     */
    public function handle(QueryExecuted $event)
    {

        $sql = str_replace("?", "‘%s‘", $event->sql);
        $log[‘sql‘] = vsprintf($sql, $event->bindings);
        Log::info(date("Y-m-d H:i:s")."(". $log[‘sql‘]).")";
    }
}

  bootstrap文件添加

$app->register(App\Providers\EventServiceProvider::class);

通过event记录sql

标签:binding   void   ted   log   tab   tis   space   添加   cti   

原文地址:https://www.cnblogs.com/php-linux/p/10676927.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!