且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何获取查询生成器以字符串形式输出其原始SQL查询?

更新时间:2023-01-21 21:28:58

要将最近一次运行的查询输出到屏幕上,可以使用以下方法:

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"
  }
}

(感谢 查看全文