当前位置:Gxlcms > 数据库问题 > laravel如何打印orm封装的sql语句

laravel如何打印orm封装的sql语句

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

$query = CdbForumSellthreadSearch::where($params)->orderBy("$orderby", "$ascDesc")->offset($start)->limit($limit);
$list = CdbForumSellthreadSearch::where($params)->orderBy("$orderby", "$ascDesc")->offset($start)->limit($limit)->get()->toArray();

 

//打印出的sql是预编译的sql语句,带有问号占位符的sql 

print_r($query->toSql());

 

//下面打印出占位符对应的变量的值,数组里面的顺序和占位符的顺序是一致的

echo ‘<pre>‘;

print_r($query->getBindings());

exit;

laravel如何打印orm封装的sql语句

标签:exit   search   mit   orm   list   fse   reads   预编译   打印   

人气教程排行