当前位置:Gxlcms > PHP教程 > thinkphp3.1.2关于打印sql语句的方法

thinkphp3.1.2关于打印sql语句的方法

时间:2021-07-01 10:21:17 帮助过:3人阅读

 M('user')->where('user_id = %d', $v['user_id'])->find()

请问thinkphp3.1.2中有这样的数据查询方法,怎样打印出他执行的原生sql语句呢?

回复内容:

 M('user')->where('user_id = %d', $v['user_id'])->find()

请问thinkphp3.1.2中有这样的数据查询方法,怎样打印出他执行的原生sql语句呢?

看错题了

echo  M("user")->getLastSql();

M('user')->fetchsql(true)->where('user_id = %d', $v['user_id'])->find()

人气教程排行