這裡採用的是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佔有率,執行時間等。
更多程式相關內容,請關注php中文網程式入門欄位!
以上是yii框架中debug怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!