1 2 3 4 5 6 7 8 9 10 11 12 13 14
--TEST-- Test ReflectionProperty::__toString() usage. --FILE-- <?php class TestClass { public $proper = 5; } echo new ReflectionProperty('TestClass', 'proper'); ?> --EXPECT-- Property [ <default> public $proper ]