如何有一个细长的应用程序错误的详细跟踪

时间:2015-09-08 08:09:53

标签: slim

我有10000行代码,概述了使用Slim Framework实现的API路由。但是,我收到一条错误消息preg_match(): Compilation failed: two named subpatterns have the same name at offset 89。问题是,我在Slim Route.php上引用了这个语句preg_match('/cost-centers...', '/overview/funds...', NULL)的堆栈跟踪。既然我的网址很长,我就无法确定哪些网址具有相同的名称。

有没有办法获得更详细的堆栈跟踪而不是显示这些缩短的格式?

1 个答案:

答案 0 :(得分:1)

感谢mgansler提供此技巧。

我刚刚使用custom error handler和PHP Exception::getTrace()函数。我还关闭了Slim的默认调试,以确保调用自定义错误处理程序。

代码是这样的:

$app = new \Slim\Slim(array(
    'debug' => false
));
$app->error(function (\Exception $e) use ($app) {
    //enter manipulation of $e->getTrace()
    //or just var_dump($e->getTrace()) but the format would be chaotic
});