时间:2021-07-01 10:21:17 帮助过:17人阅读
yii2.0中有没有一个像tp中的getLastSql()方法去查询执行后的sql语句
echo (new \yii\db\Query)->from('users')
->where(['name'=>'moca'])
->createCommand()
->rawSql; // 同getRawSql()
输出
SELECT * FROM `users` WHERE `name`='moca'
yii-db-command
这个不清楚,不过可以使用debug模式,查看运行的状态,和执行的SQL信息
在 web/index.php
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'test');