/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/reflection/tests/ReflectionConstant_getAttributes_internal.phpt
17 строк
325 B
DanielEScherzer
gen_stub: Add support for attributes on constants in stubs (#18735)
06 июн 2025, 00:46
Не верифицирован
06 июн 2025, 00:46
8f3cdf6
Код
Авторство
О чём код?
--TEST-- ReflectionConstant::getAttributes() with attribute (internal constant) --FILE-- <?php $reflectionConstant = new ReflectionConstant('E_STRICT'); var_dump($reflectionConstant->getAttributes()); ?> --EXPECTF-- array(1) { [0]=> object(ReflectionAttribute)#%d (1) { ["name"]=> string(10) "Deprecated" } }