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