作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我想在 CakePHP 3.2 中获取最后执行的查询,我之前在 CakePHP 2.x 中使用过以下内容:-
function getLastQuery() {
Configure::write('debug', 2);
$dbo = $this->getDatasource();
$logs = $dbo->getLog();
$lastLog = end($logs['log']);
$latQuery = $lastLog['query'];
echo "<pre>";
print_r($latQuery);
}
我怎样才能在 CakePHP 3.x 中做到这一点?
最佳答案
简而言之:您需要做的就是修改 config/app.php
找到 Datasources
配置并设置 'log' => true
'Datasources' => [
'default' => [
'className' => 'Cake\Database\Connection',
'driver' => 'Cake\Database\Driver\Mysql',
'persistent' => false,
'host' => 'localhost',
...
'log' => true, // Set this
]
]
如果您的应用处于 Debug模式,您现在将在页面显示 SQL 错误时看到 SQL 查询。如果您没有打开 Debug模式,您还可以通过添加以下内容将 SQL 查询记录到一个文件中:
config/app.php
找到Log
配置并添加新的日志类型:
'Log' => [
'debug' => [
'className' => 'Cake\Log\Engine\FileLog',
'path' => LOGS,
'file' => 'debug',
'levels' => ['notice', 'info', 'debug'],
'url' => env('LOG_DEBUG_URL', null),
],
'error' => [
'className' => 'Cake\Log\Engine\FileLog',
'path' => LOGS,
'file' => 'error',
'levels' => ['warning', 'error', 'critical', 'alert', 'emergency'],
'url' => env('LOG_ERROR_URL', null),
],
// Add the following...
'queries' => [
'className' => 'File',
'path' => LOGS,
'file' => 'queries.log',
'scopes' => ['queriesLog']
]
],
您的 SQL 查询现在将被写入一个日志文件,您可以在 /logs/queries.log
中找到该文件
关于php - 如何在 CakePHP 3.2 中获取上次运行的查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35291033/
我是一名优秀的程序员,十分优秀!