mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
17 lines
231 B
PHP
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
|