安裝使用yii-debug-toolbar,yii框架的調試插件

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

  1. 'log'=>array(  sql

  2.     'class'=>'CLogRouter',  yii

  3.     'routes'=>array(  debug

  4.         array(  調試

  5.             'class'=>'ext.yii-debug-toolbar.YiiDebugToolbarRoute',  rest

  6.             // Access is restricted by default to the localhost  ip

  7.             //'ipFilters'=>array('127.0.0.1','192.168.1.*', 88.23.23.0/24),  

  8.         ),  

  9.     ),  

  10. ),  

 4. 若是想要debug toolbar輸出詳細的SQL信息,在config/main.php配置db處設置:

 

Php代碼  收藏代碼

  1. 'db'=>array(  

  2.     'connectionString' => 'mysql:host=localhost;dbname=test',  

  3.     //...  

  4.     'enableProfiling'=>true,  

  5.     'enableParamLogging'=>true,  

  6. ),  

 

配置完成,查看更多介紹:https://github.com/malyshev/yii-debug-toolbar

 

訪問頁面就能夠再頁面右上方看到一個小蟲子,點開,就能夠看到記錄的各類調試信息


相關文章
相關標籤/搜索