How do I get the query builder to output its raw SQL query as a string?(如何让查询生成器将其原始 SQL 查询输出为字符串?)
本文介绍了如何让查询生成器将其原始 SQL 查询输出为字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给定以下代码:
DB::table('users')->get();
我想获取上面的数据库查询生成器将生成的原始 SQL 查询字符串.在此示例中,它将是 SELECT * FROM users
.
I want to get the raw SQL query string that the database query builder above will generate. In this example, it would be SELECT * FROM users
.
我该怎么做?
推荐答案
要将上次运行的查询输出到屏幕,您可以使用以下命令:
To output to the screen the last queries ran you can use this:
DB::enableQueryLog(); // Enable query log
// Your Eloquent query executed by using get()
dd(DB::getQueryLog()); // Show results of log
我相信最近的查询将位于数组的底部.
I believe the most recent queries will be at the bottom of the array.
你会得到类似的东西:
array(1) {
[0]=>
array(3) {
["query"]=>
string(21) "select * from "users""
["bindings"]=>
array(0) {
}
["time"]=>
string(4) "0.92"
}
}
(感谢 约书亚的评论如下.)
这篇关于如何让查询生成器将其原始 SQL 查询输出为字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何让查询生成器将其原始 SQL 查询输出为字符串?


猜你喜欢
- Laravel 仓库 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Mod使用GET变量将子域重写为PHP 2021-01-01