ReflectionClass::getStaticPropertyValue

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

ReflectionClass::getStaticPropertyValue获取静态属性的值

描述

public ReflectionClass::getStaticPropertyValue(string $name, mixed &$def_value = ?): mixed

获取此类上静态属性的值。

参数

name

要返回其值的静态属性的名称。

def_value

如果类没有声明具有给定 name 的静态属性,则返回的默认值。如果属性不存在且省略此参数,则会抛出 ReflectionException

返回值

静态属性的值。

示例

示例 #1 ReflectionClass::getStaticPropertyValue() 的基本用法

<?php
class Apple {
public static
$color = 'Red';
}

$class = new ReflectionClass('Apple');
var_dump($class->getStaticPropertyValue('color'));
?>

上面的示例将输出

string(3) "Red"

参见

添加说明

用户贡献说明 2 notes

7
Antares
12 年前
此方法似乎具有与 getStaticProperties 方法不同的安全级别。

如果您创建了两个类 A 和 B,它们看起来像

<?php
class A{
protected static
$static_var='foo';

public function
getStatic(){
$class=new ReflectionClass($this);
return
$class->getStaticPropertyValue('static_var');
}

public function
getStatic2(){
$class=new ReflectionClass($this);
$staticProps=$class->getStaticProperties();
return
$staticProps['static_var'];
}

public function
__construct(){
echo
$this->getStatic2();
echo
$this->getStatic();
}
}

class
B extends A{
protected static
$static_var='foo2';

}
?>

那么输出将是 getStatic() 调用的异常,而 getStatic2() 将正确返回 'foo2';
-2
Mauro Gabriel Titimoli
14 年前
如果您想更改变量类的静态属性...

PHP 5.2
<?php
$reflection
= new ReflectionClass($className);
$staticPropertyReference = & $reflection->getStaticPropertyValue($staticPropertyName);

$staticPropertyReference = 'new value';
?>

PHP 5.3
<?php
$className
::$$classProperty
?>
To Top