mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
16 lines
231 B
PHP
16 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
|