/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/reflection/tests/ReflectionConstant_inexistent.phpt
14 строк
255 B
Ilija Tovilo
Implement reflection constant
17 апр 2024, 23:53
Не верифицирован
17 апр 2024, 23:53
e23440e
Код
Авторство
О чём код?
--TEST-- ReflectionConstant on inexistent constant --FILE-- <?php try { new \ReflectionConstant('C'); } catch (Exception $e) { echo get_class($e) . ': ' . $e->getMessage() . "\n"; } ?> --EXPECT-- ReflectionException: Constant "C" does not exist