最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Yii框架如何输出sql语句调试?
时间:2022-06-25 00:52:46 编辑:袖梨 来源:一聚教程网
我们使用:yiidebugtb来调试(因为用他界面比较美观,不影响界面其他元素)。
1.下载yiidebugtb,并且放入到 application.extensions.yiidebugtb 目录
2.修改main.php,加入如下代码:
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning,trace',
),
// 以下是新加
array( // configuration for the toolbar
'class'=>'XWebDebugRouter',
'config'=>'alignLeft, opaque, runInDebug, fixedPos, collapsed, yamlStyle',
'levels'=>'error, warning, trace, profile, info',
//'categories' => 'system.db.*',
'allowedIPs'=>array('127.0.0.1','::1','192.168.1[0-5].[0-9]{3}','如果程序在外网需要填入你的公网的ip'),
),
),
)
3.db链接的配置里面做下修改:
'db'=>array(
'connectionString'=>'mysql:host=*.*.*.*;dbname=test',
'emulatePrepare'=>true, // 加入
'enableParamLogging' => true, // 加入
'username'=>'-----',
'password'=>'---',
'charset'=>'utf8',
'schemaCachingDuration'=>'0',
'autoConnect'=>false,
),
4.完成
如:
相关文章
- 明末渊虚之羽赫梯弯刀隐藏效果怎么样 赫梯弯刀隐藏效果介绍 08-06
- 原神爱诺是什么元素 爱诺神之眼元素类型介绍 08-06
- 人渣SCUM车辆怎么组装 车辆组装步骤介绍 08-06
- 明末渊虚之羽卜坠击减伤怎么获得 卜坠击减伤获取方法 08-06
- 原神爱诺技能是什么 爱诺技能介绍 08-06
- 明末渊虚之羽卜覆羽减伤怎么获得 卜覆羽减伤获取方法 08-06