Home > Backend Development > PHP Tutorial > Laravel SQL语句记录方式

Laravel SQL语句记录方式

WBOY
Release: 2016-06-23 13:04:52
Original
928 people have browsed it

  

打印sql语句,直接在你执行SQL语句后输出

方法一:

 

 

$queries = DB::getQueryLog();

 

 $a = end($queries);

 

 $tmp = str_replace('?', '"'.'%s'.'"', $a["query"]);

 

 echo vsprintf($tmp, $a['bindings']);

 

 exit;



方法二:  注意 放在routes.php上面

    Event::listen('illuminate.query',function($query){

    var_dump($query);

});

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template