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