gpt4 book ai didi

php - 无法阻止 Symfony 3 Controller 中的错误跟踪

转载 作者:搜寻专家 更新时间:2023-10-31 21:03:46 29 4
gpt4 key购买 nike

我正在研究Symfony\Component\Debug\Debug。据我所知,AppKernel 的构造函数可以接受第二个参数来定义是否使用 Debug模式 (true/false)。我实际上不明白的是 Debug::enable() 的用法和互补性,因为它在官方 Symfony Github 的 repository 上的 app_dev.php 中有所说明。 .

例如,我试图在 Controller 上抛出一个 Exception 以查看效果,我在 app_dev.php 中评论了 Debug::enable(); 但我总是看到 error page .

尽管注释掉了 Debug::enable();,为什么我仍然看到错误痕迹?

最佳答案

简短说明

Debug::enable() 方法注册了一个后备错误处理程序,如果您的应用程序无法处理错误,将调用该处理程序。

$debug 标志设置为 true 的情况下启动内核时,您看到的错误页面是应用程序错误处理的结果(由异常监听器实现) .将标志设置为 false 以禁用堆栈跟踪。如果你只是在测试之后,你也可以 disable error pages in development .

Debug 组件显示的页面不如异常监听器提供的页面好,但比 PHP 的好。

详细解释

前端 Controller 调用你的应用内核:

$kernel = new AppKernel('dev', true);
$response = $kernel->handle(Request::createFromGlobals());

应用程序内核自行启动,创建容器并调用 http 内核来处理请求:

public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
if (false === $this->booted) {
$this->boot();
}

return $this->getHttpKernel()->handle($request, $type, $catch);
}

http 内核将使用事件调度程序来触发某些事件(kernel.requestkernel.responsekernel.exception 等) .当在处理请求时抛出异常,http内核会捕获它并触发kernel.exception事件:

// the following code is simplified to show the point

public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
return $this->handleException($e, $request, $type);
}
}

private function handleException(\Exception $e, $request, $type)
{
$event = new GetResponseForExceptionEvent($this, $request, $type, $e);
$this->dispatcher->dispatch(KernelEvents::EXCEPTION, $event);

// ...
}

在 Symfony 标准版中默认注册的监听器之一是 Symfony\Component\HttpKernel\EventListener\ExceptionListener。它负责呈现漂亮的错误页面。

但是,它只会处理在 http 内核中处理请求时抛出的异常。因此,如果在此调用之外出现任何错误,将不会得到处理(请查看前面代码示例中的 catch 博客)。

这就是 Debug 组件的用武之地。Debug::enable() 方法注册了一个错误处理程序、一个异常处理程序和一个特殊的类加载器。您可以在任何没有 http 内核的 PHP 项目中使用它。它是一种后备错误处理程序,如果您的应用程序无法处理错误,它将被调用。它与内核中的 $debug 构造函数参数无关。

关于php - 无法阻止 Symfony 3 Controller 中的错误跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36174156/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com