blob: e77a3b714a1cb706d39d9e1e02bf7546429c63d7 (
plain)
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
|