/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sapi/phpdbg/tests/set_exception_handler.phpt
19 строк
343 B
Christoph M. Becker
Drop all JIT related XFAILS from phpdbg test suite
30 ноя 2020, 17:24
30 ноя 2020, 17:24
57463cf
Код
Авторство
О чём код?
--TEST-- set_exception_handler() in phpdbg --PHPDBG-- r c q --EXPECTF-- [Successful compilation of %s] prompt> [Uncaught Exception in %s on line 4: test] >00004: throw new Exception("test"); 00005: prompt> EX [Script ended normally] prompt> --FILE-- <?php set_exception_handler(function () { print "EX\n"; }); throw new Exception("test");