Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-13 08:39:02
Original
878 people have browsed it

[麦先生]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);

});

 

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!