ReflectionClass
PHP Manual

ReflectionClass::getStaticPropertyValue

(PHP 5 >= 5.1.0)

ReflectionClass::getStaticPropertyValue静的なプロパティの値を取得する

説明

public mixed ReflectionClass::getStaticPropertyValue ( string $name )

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

パラメータ

name

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

返り値

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

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

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

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

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

string(3) "Red"

参考


ReflectionClass
PHP Manual