/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/reflection/tests/ReflectionAttribute_newInstance_deprecated.phpt
59 строк
1 KB
Benjamin Eberlei
RFC: Add `#[\Deprecated]` Attribute (#11293)
02 июл 2024, 10:44
Не верифицирован
02 июл 2024, 10:44
72c8746
Код
Авторство
О чём код?
--TEST-- ReflectionAttribute::newInstance(): #[\Deprecated] --FILE-- <?php #[\Deprecated] function test1() { } #[\Deprecated()] function test2() { } #[\Deprecated("use test() instead")] function test3() { } #[\Deprecated(since: "2.0")] function test4() { } $reflection = new ReflectionFunction('test1'); var_dump($reflection->getAttributes()[0]->newInstance()); $reflection = new ReflectionFunction('test2'); var_dump($reflection->getAttributes()[0]->newInstance()); $reflection = new ReflectionFunction('test3'); var_dump($reflection->getAttributes()[0]->newInstance()); $reflection = new ReflectionFunction('test4'); var_dump($reflection->getAttributes()[0]->newInstance()); ?> --EXPECTF-- object(Deprecated)#%d (2) { ["message"]=> NULL ["since"]=> NULL } object(Deprecated)#%d (2) { ["message"]=> NULL ["since"]=> NULL } object(Deprecated)#%d (2) { ["message"]=> string(18) "use test() instead" ["since"]=> NULL } object(Deprecated)#%d (2) { ["message"]=> NULL ["since"]=> string(3) "2.0" }