yii顯示偵錯資訊的方法:先在入口檔案中新增「defined('YII_DEBUG') or define('YII_DEBUG',true);」;然後開啟頁面顯示模式;最後進行資料庫設定即可。
yii 顯示偵錯資訊及資料庫設定
在程式測試中我們需查檢視程式執行過程,SQL執行語句等,這時候我們可以開啟YII的調試模式
推薦:《yii教程》
#開啟方法
#1、入口文件添加
defined('YII_DEBUG') or define('YII_DEBUG',true);
2、設定檔中增加
'log'=>array( 'class'=>'CLogRouter', 'routes'=>array( array( 'class'=>'CWebLogRoute', //开启页面显示模式 ), ), ),
3、資料庫設定
'db'=>array( 'connectionString' => 'mysql:host=localhost;dbname=yiidemo',//字符串连接 'username' => 'root',//数据库用户名 'password' => '',//数据库密码 'charset' => 'utf8',//数据库编码 'tablePrefix'=>'yii_'//数据库前缀 ),
以上是yii怎麼顯示調試訊息的詳細內容。更多資訊請關注PHP中文網其他相關文章!