php-src/ext/reflection/tests/reflectionProperty_export_basic.phpt
2008-05-24 13:34:22 +00:00

17 lines
231 B
PHP

--TEST--
Test ReflectionProperty::export() usage.
--FILE--
<?php
class TestClass {
public $proper = 5;
}
var_dump(ReflectionProperty::export('TestClass', 'proper'));
?>
--EXPECT--
Property [ <default> public $proper ]
NULL