/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/reflection/tests/ReflectionObject_export_basic3.phpt
38 строк
526 B
Nikita Popov
Deprecate implicit dynamic properties
26 ноя 2021, 16:10
26 ноя 2021, 16:10
902d643
Код
Авторство
О чём код?
--TEST-- ReflectionObject::__toString() - ensure dynamic property with same name as inherited private property is shown. --FILE-- <?php class C { private $p = 1; } #[AllowDynamicProperties] class D extends C{ } $Obj = new D; $Obj->p = 'value'; echo new ReflectionObject($Obj); ?> --EXPECTF-- Object of class [ <user> class D extends C ] { @@ %s - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [0] { } - Dynamic properties [0] { } - Methods [0] { } }