(PHP 5, PHP 7, PHP 8)
ReflectionClass::getDefaultProperties — 获取默认属性
获取类的默认属性(包括了继承的属性)。
注意:
当在内部类中使用时,此方法仅用于静态属性,当在用户定义类中使用此方法时,无法追踪静态类属性的默认值。
此函数没有参数。
示例 #1 ReflectionClass::getDefaultProperties() 示例
<?php
class Bar {
protected $inheritedProperty = 'inheritedDefault';
}
class Foo extends Bar {
public $property = 'propertyDefault';
private $privateProperty = 'privatePropertyDefault';
public static $staticProperty = 'staticProperty';
public $defaultlessProperty;
}
$reflectionClass = new ReflectionClass('Foo');
var_dump($reflectionClass->getDefaultProperties());
?>
以上示例会输出:
array(5) { ["staticProperty"]=> string(14) "staticProperty" ["property"]=> string(15) "propertyDefault" ["privateProperty"]=> string(22) "privatePropertyDefault" ["defaultlessProperty"]=> NULL ["inheritedProperty"]=> string(16) "inheritedDefault" }