mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
14 lines
220 B
PHP
14 lines
220 B
PHP
--TEST--
|
|
Test ReflectionProperty::__toString() usage.
|
|
--FILE--
|
|
<?php
|
|
|
|
class TestClass {
|
|
public $proper = 5;
|
|
}
|
|
|
|
echo new ReflectionProperty('TestClass', 'proper');
|
|
|
|
?>
|
|
--EXPECT--
|
|
Property [ <default> public $proper ]
|