這裡採用的是yii2的advanced的版本。配置介面存取的debug模式。
設定檔目錄: frontend/config/main-local.php (建議學習:yii教學)
設定內容:
##############################################設定。 ###
if (!YII_ENV_TEST) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug']['class'] = 'yii\debug\Module'; $config['modules']['debug']['allowedIPs'] = ['*', '127.0.0.1', '0.0.0.0']; $config['modules']['debug']['historySize'] = 200; }###allowedIPs 欄位表示允許存取的ip欄位。然後historySize 表示儲存的debug檔案大小。 ######輸入位址 frontend/web/index.php?r=debug 來進入debug模式。 ############點選tag能夠進入這個請求裡面,然後查看sql,cpu佔有率,執行時間等。 #########關閉debug######
在入口文件添加 defined('YII_DEBUG') or define('YII_DEBUG', false); defined('YII_ENV') or define('YII_ENV', 'prod');
以上是yii2如何關閉debug的詳細內容。更多資訊請關注PHP中文網其他相關文章!