laravel 框架sql日志打印
use Log;
DB::connection()->enableQueryLog();
$cust_data = DB::table('cust_master')
->select(DB::raw('COUNT(*) AS total_cust_num'))
->get();
Log::info('-->',DB::getQueryLog());
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号