summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/012.phpt
blob: 24643450c17b1751c0c1686e8c1b7639ff932102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
ReflectionClass::getDefaultProperties()
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--FILE--
<?php
class Foo {
	public $test = "ok";
}
$class = new ReflectionClass("Foo");
$props = $class->getDefaultProperties();
echo $props["test"];
?>
--EXPECT--
ok