Closed
Description
Q | A |
---|---|
Bug report? | yes |
Feature request? | no |
BC Break report? | no |
RFC? | no |
Symfony version | v4.0.3 |
I got a use case where Im stuck in this loop:
$handler = self::$reservedMemory = null;
$handlers = array();
while (!is_array($handler) || !$handler[0] instanceof self) {
$handler = set_exception_handler('var_dump');
restore_exception_handler();
if (!$handler) {
break;
}
restore_exception_handler();
array_unshift($handlers, $handler);
}
For each iteration I the $handlers
array get one more item in the array. The item is "newrelic_exception_handler"
.
Metadata
Metadata
Assignees
Labels
No labels