PHP | ReflectionClass getStaticPropertyValue()函数
ReflectionClass::getStaticPropertyValue()函数是PHP的一个内置函数,用于返回静态属性的值。
句法:
mixed ReflectionClass::getStaticPropertyValue( string $name, mixed &$def_value )
参数:此函数接受单个参数名称,即指定静态属性的名称。
返回值:此函数返回静态属性的值。
下面的程序说明了PHP的 ReflectionClass::getStaticPropertyValue()函数:
方案一:
getStaticPropertyValue('Dept3');
// Getting the value of the static property.
var_dump($A);
?>
输出:
string(2) "EE"
方案二:
getStaticPropertyValue('Dept1');
$B = $ReflectionClass->getStaticPropertyValue('Dept2');
$C = $ReflectionClass->getStaticPropertyValue('Dept3');
// Getting the value of the static property.
var_dump($A);
var_dump($B);
var_dump($C);
?>
输出:
string(3) "CSE"
string(3) "ECE"
string(2) "EE"
参考: https://www. PHP.net/manual/en/reflectionclass.getstaticpropertyvalue。 PHP