yii2如何查看当前程序执行的sql语句
时间:2020-02-17 17:29
示例如下: 推荐教程:yii框架 更多编程相关内容,请关注gxlsystem.com编程教程栏目! 以上就是yii2如何查看当前程序执行的sql语句的详细内容,更多请关注gxlsystem.com其它相关文章!$query = model::find();
$dataProvider = new ActiveDataProvider([
'query' => $query,
'pagination' => [
'pagesize' => '25',
]
]);
//获取当前程序执行的sql语句
$query->createCommand()->getRawSql();