gpt4 book ai didi

php - 如何在 CakePHP 3.2 中获取上次运行的查询?

转载 作者:可可西里 更新时间:2023-11-01 12:31:46 25 4
gpt4 key购买 nike

我想在 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com