Laravel 打印SQL语句
Posted 降魔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel 打印SQL语句相关的知识,希望对你有一定的参考价值。
DB::connection()->enableQueryLog();#开启执行日志 $a = self::where([‘investorid‘=>$id])->whereBetween(‘inserttime‘,[$start,$end])->where(‘deposit‘,‘>‘,0)->orderBy(‘id‘,‘asc‘)->Paginate(20); print_r(DB::getQueryLog()); //获取查询语句、参数和执行时间
以上是关于Laravel 打印SQL语句的主要内容,如果未能解决你的问题,请参考以下文章