You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
435 B
24 lines
435 B
3 weeks ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Middleware;
|
||
|
|
||
|
use Closure;
|
||
|
|
||
|
class PerformanceDebug
|
||
|
{
|
||
|
public function handle($request, Closure $next)
|
||
|
{
|
||
|
$response = $next($request);
|
||
|
|
||
|
// 确保在开发环境下
|
||
|
if (app()->isLocal()) {
|
||
|
|
||
|
// 计算包含了多少文件
|
||
|
$included_files_count = count(get_included_files());
|
||
|
|
||
|
dd($included_files_count);
|
||
|
}
|
||
|
|
||
|
return $response;
|
||
|
}
|
||
|
}
|