/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sapi/phpdbg/tests/gh16181.phpt
26 строк
480 B
Christoph M. Becker
Fix GH-16181: phpdbg: exit in exception handler reports fatal error
03 окт 2024, 12:36
Не верифицирован
03 окт 2024, 12:36
f14e5cf
Код
Авторство
О чём код?
--TEST-- GH-16181 (phpdbg: exit in exception handler reports fatal error) --PHPDBG-- r c q --FILE-- <?php set_exception_handler(function() { echo "exception caught\n"; die; }); echo "throwing exception\n"; throw new \Exception("oh noes"); ?> --EXPECTF-- [Successful compilation of %s] prompt> throwing exception [Uncaught Exception in %s on line %d: oh noes] >00008: throw new \Exception("oh noes"); 00009: ?> 00010: prompt> exception caught [Script ended normally] prompt>