Laravel 打印已执行的sql语句
程序员文章站
2022-05-03 09:17:59
打开app\Providers\AppServiceProvider.PHP,在boot方法中添加如下内容 5.2以下版本 5.2及以上版本 ......
打开app\Providers\AppServiceProvider.PHP,在boot方法中添加如下内容
5.2以下版本
// 先引入DB use DB; // 或者直接使用 \DB:: DB::listen(function($sql, $bindings, $time) { dump($sql); });
use DB; // 或者直接使用 \DB:: // 只能接受一个参数 QueryExecuted {#84 ▼ +sql: "select * from `posts` where `slug` = ? limit 1" +bindings: array:1 [▶] +time: 0.59 +connection: MySqlConnection {#85 ▶} +connectionName: "mysql" } DB::listen(function($sql) { dump($sql); // echo $sql->sql; // dump($sql->bindings); }); // 如果要放入日志文件中 DB::listen( function ($sql) { // $sql is an object with the properties: // sql: The query // bindings: the sql query variables // time: The execution time for the query // connectionName: The name of the connection // To save the executed queries to file: // Process the sql and the bindings: foreach ($sql->bindings as $i => $binding) { if ($binding instanceof \DateTime) { $sql->bindings[$i] = $binding->format('\'Y-m-d H:i:s\''); } else { if (is_string($binding)) { $sql->bindings[$i] = "'$binding'"; } } } // Insert bindings into query $query = str_replace(array('%', '?'), array('%%', '%s'), $sql->sql); $query = vsprintf($query, $sql->bindings); // Save the query to file $logFile = fopen( storage_path('logs' . DIRECTORY_SEPARATOR . date('Y-m-d') . '_query.log'), 'a+' ); fwrite($logFile, date('Y-m-d H:i:s') . ': ' . $query . PHP_EOL); fclose($logFile); } );
5.2及以上版本
上一篇: 活该你是个屌丝幽默经典
下一篇: 这么老板也够冤枉的
推荐阅读
-
PHP执行SQL后判断记录集不为空的语句
-
在 MySQL 数据库中使用C 执行SQL的语句_MySQL
-
在SQLServer上查看SQL语句的执行时间的方法
-
linux下 PHP 7 Laravel 使用unique做validation的时候生成SQL语句有问题
-
用mysqldumpslow分析执行较慢的SQL语句_MySQL
-
在MySQL数据库中执行SQL语句时的几个注意点_MySQL
-
监控mysql执行的sql语句_MySQL
-
T-SQL 查询语句的执行顺序解析
-
mysql pdo 实际执行的SQL语句怎么查看?
-
Laravel5 里面怎么查看执行的sql语句...............