= 5.1.2, PHP 7, PHP 8)ReflectionClass::getStaticPropertyValue — 獲取靜態(tài)(static)屬性的值說(shuō)明public ReflectionClas">
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
ReflectionClass::getStaticPropertyValue — 獲取靜態(tài)(static)屬性的值
獲取這個(gè)類里靜態(tài)(static)屬性的值。
name
靜態(tài)屬性的名稱,來(lái)返回它的值。
def_value
假如類沒有定義 name
的 static 屬性,將返回一個(gè)默認(rèn)值。
如果屬性不存在,并且省略了此參數(shù),將會(huì)拋出
ReflectionException 。
靜態(tài)屬性的值。
示例 #1 ReflectionClass::getStaticPropertyValue() 的基本用法
<?php
class Apple {
public static $color = 'Red';
}
$class = new ReflectionClass('Apple');
var_dump($class->getStaticPropertyValue('color'));
?>
以上例程會(huì)輸出:
string(3) "Red"