如何判断 CakePHP 中的调试模式是否打开 3.x
How to tell if debug mode is on in CakePHP 3.x
我想知道如何检索 env() 函数内部的 var...
/**
* Debug Level:
*
* Production Mode:
* false: No error messages, errors, or warnings shown.
*
* Development Mode:
* true: Errors and warnings shown.
*/
'debug' => filter_var(env('DEBUG', true), FILTER_VALIDATE_BOOLEAN),
现在我正在使用
<?php if(DEBUG == true) { ?>
但这会引发错误
Use of undefined constant DEBUG - assumed 'DEBUG' (this will throw an Error in a future version of PHP)
根据 ndm 的建议,您可以使用 read
方法来检查调试模式是 ON
还是 OFF
.
在你的控制器中添加这个
use Cake\Core\Configure;
然后使用这样的读取方法:
if (Configure::read('debug')) {
echo "Debug mode is ON";
} else {
echo "Debug mode is OFF";
}
通过Configure::read(key)
你可以了解一下。
请检查以下内容link:
https://book.cakephp.org/3.0/en/development/configuration.html#reading-configuration-data
我想知道如何检索 env() 函数内部的 var...
/**
* Debug Level:
*
* Production Mode:
* false: No error messages, errors, or warnings shown.
*
* Development Mode:
* true: Errors and warnings shown.
*/
'debug' => filter_var(env('DEBUG', true), FILTER_VALIDATE_BOOLEAN),
现在我正在使用
<?php if(DEBUG == true) { ?>
但这会引发错误
Use of undefined constant DEBUG - assumed 'DEBUG' (this will throw an Error in a future version of PHP)
根据 ndm 的建议,您可以使用 read
方法来检查调试模式是 ON
还是 OFF
.
在你的控制器中添加这个
use Cake\Core\Configure;
然后使用这样的读取方法:
if (Configure::read('debug')) {
echo "Debug mode is ON";
} else {
echo "Debug mode is OFF";
}
通过Configure::read(key)
你可以了解一下。
请检查以下内容link:
https://book.cakephp.org/3.0/en/development/configuration.html#reading-configuration-data