14 lines
219 B
Plaintext
14 lines
219 B
Plaintext
|
|
--TEST--
|
||
|
|
ReflectionClass::getDefaultProperties()
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
class Foo {
|
||
|
|
public $test = "ok";
|
||
|
|
}
|
||
|
|
$class = new ReflectionClass("Foo");
|
||
|
|
$props = $class->getDefaultProperties();
|
||
|
|
echo $props["test"];
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
ok
|