Home  >  Article  >  php教程  >  [麦先生]Laravel SQL语句记录方式,laravelsql

[麦先生]Laravel SQL语句记录方式,laravelsql

WBOY
WBOYOriginal
2016-06-13 08:39:02885browse

[麦先生]Laravel SQL语句记录方式,laravelsql

  

打印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);

});

 

Statement:
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