1. 從github下載yii-debug-toolbar源碼:https://github.com/malyshev/yii-debug-toolbar/downloads
2. 假設yii的項目建立在了/export/dev/yii-demophp
將下載的文件解壓縮到/export/dev/yii-demo/protected/extensionsmysql
3. 編輯配置文件 protected/config/main.phpgit
Php代碼 github
'log'=>array( sql
'class'=>'CLogRouter', yii
'routes'=>array( debug
array( 調試
'class'=>'ext.yii-debug-toolbar.YiiDebugToolbarRoute', rest
// Access is restricted by default to the localhost ip
//'ipFilters'=>array('127.0.0.1','192.168.1.*', 88.23.23.0/24),
),
),
),
4. 若是想要debug toolbar輸出詳細的SQL信息,在config/main.php配置db處設置:
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=test',
//...
'enableProfiling'=>true,
'enableParamLogging'=>true,
),
配置完成,查看更多介紹:https://github.com/malyshev/yii-debug-toolbar
訪問頁面就能夠再頁面右上方看到一個小蟲子,點開,就能夠看到記錄的各類調試信息