php-src/ext/reflection/tests/reflectionProperty_export_basic.phpt

19 lines
298 B
PHP

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