summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/012.phpt
blob: 77db6eb4048097e1c2c9a1f5ec635ddb728a2a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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