1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
--TEST--
reflection: ReflectionProperty::getDefaultValue
--FILE--
<?php
define('FOO', 42);
#[AllowDynamicProperties]
class TestClass
{
public $foo;
public $bar = 'baz';
public static $static1;
public static $static2 = 1234;
public int $val1;
public int $val2 = 1234;
public ?int $nullable;
public ?int $nullable2 = null;
public $constantAst = 2 * 2;
public $constantRuntimeAst = FOO;
}
$property = new ReflectionProperty(TestClass::class, 'foo');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'bar');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'static1');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'static2');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'val1');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'val2');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'nullable');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'nullable2');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'constantAst');
var_dump($property->getDefaultValue());
$property = new ReflectionProperty(TestClass::class, 'constantRuntimeAst');
var_dump($property->getDefaultValue());
$test = new TestClass;
$test->dynamic = null;
$property = new ReflectionProperty($test, 'dynamic');
var_dump($property->getDefaultValue());
?>
--EXPECT--
NULL
string(3) "baz"
NULL
int(1234)
NULL
int(1234)
NULL
NULL
int(4)
int(42)
NULL
|