Laravel 8 쿼리 로그 예제
https://codeanddeploy.com/blog/laravel/laravel-8-query-log-example
이번 포스트에서는 라라벨 8 쿼리 로그를 구현하는 방법을 보여드리겠습니다. 때때로 쿼리 로그를 표시하고 마지막으로 실행된 항목을 확인해야 합니다. 이것은 Laravel 애플리케이션에서 여러 쿼리를 디버그하려는 경우에 유용합니다.
이 예에서는 프로젝트에 적용할 수 있는 3가지 방법을 보여 드리겠습니다.
예 #1
$user = User::select("*")->toSql();
dd($user);
산출:
select * from `users`
예 #2:
DB::enableQueryLog();
$user = User::get();
$query = DB::getQueryLog();
dd($query);
산출:
array:1 [▼
0 => array:3 [▼
"query" => "select * from `users`"
"bindings" => []
"time" => 30.66
]
]
예 #3
DB::enableQueryLog();
$user = User::get();
$query = DB::getQueryLog();
$query = end($query);
dd($query);
산출:
array:3 [▼
"query" => "select * from `users`"
"bindings" => []
"time" => 22.04
]
예 #4
\DB::enableQueryLog();
$users = \DB::table("users")->get();
$query = \DB::getQueryLog();
dd(end($query));
산출:
array:3 [▼
"query" => "select * from `users`"
"bindings" => []
"time" => 26.94
]
이제 Laravel 쿼리 로그를 구현하는 방법에 대한 기본 정보를 얻었습니다.
이 튜토리얼이 도움이 되었으면 합니다. 친절하게 여기를 방문하십시오 https://codeanddeploy.com/blog/laravel/laravel-8-query-log-example 이 코드를 다운로드하려면.
행복한 코딩 :)
Reference
이 문제에 관하여(Laravel 8 쿼리 로그 예제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codeanddeploy/laravel-8-query-log-example-77g텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)