ReflectionClass::getStaticPropertyValue

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

ReflectionClass::getStaticPropertyValuestaticプロパティの値を取得する

説明

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

このクラスのstaticプロパティの値を取得します。

パラメータ

name

値を返したいstaticプロパティの名前。

def_value

指定した名前のstaticプロパティがそのクラスに存在しない場合に返す、デフォルト値。 プロパティが存在せず、かつこの引数も省略されていた場合は、 ReflectionException が発生します。

戻り値

staticプロパティの値を返します。

例1 ReflectionClass::getStaticPropertyValue() の基本的な使用例

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

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

上の例の出力は以下となります。

string(3) "Red"

参考

関連キーワード:  static, 取得, ReflectionClass, , getStaticPropertyValue, クラス, 存在, 名前, string, getStaticProperties