最佳答案
app/Providers/AppServiceProvider.php
的 boot()
方法
DB::listen(function ($query) {
$sql = $query->sql;
$bindings = $query->bindings;
$time = $query->time;
//写入sql
if ($bindings) {
file_put_contents('.sqls', "[" . date("Y-m-d H:i:s") . "]" . $sql . "\r\nparmars:" . json_encode($bindings, 320) . "\r\n\r\n", FILE_APPEND);
} else {
file_put_contents('.sqls', "[" . date("Y-m-d H:i:s") . "]" . $sql . "\r\n\r\n", FILE_APPEND);
}
});
这个代码是我之前抄百度的,后面没用了,你可以复制这个。
(代码优化你会的,这个代码不好)
讨论数量:
app/Providers/AppServiceProvider.php
的 boot()
方法
DB::listen(function ($query) {
$sql = $query->sql;
$bindings = $query->bindings;
$time = $query->time;
//写入sql
if ($bindings) {
file_put_contents('.sqls', "[" . date("Y-m-d H:i:s") . "]" . $sql . "\r\nparmars:" . json_encode($bindings, 320) . "\r\n\r\n", FILE_APPEND);
} else {
file_put_contents('.sqls', "[" . date("Y-m-d H:i:s") . "]" . $sql . "\r\n\r\n", FILE_APPEND);
}
});
这个代码是我之前抄百度的,后面没用了,你可以复制这个。
(代码优化你会的,这个代码不好)
那就看你是想用航母来实现还是想用滑翔机来实现了!
航母:/laravel/telescope
,itsgoingd/clockwork
滑翔机:楼上那些,监听 Illuminate\Database\Events\QueryExecuted
放一样的地方 然后用 show profile
查看执行时间
\DB::listen(
function ($sql) {
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);
}
);
推荐文章: