ReflectionClass::getStaticPropertyValue

(PHP 5 >= 5.1.2, PHP 7)

ReflectionClass::getStaticPropertyValue��ȡ��̬��static�����Ե�ֵ

˵��

public ReflectionClass::getStaticPropertyValue ( string $name [, mixed &$def_value ] ) : mixed

��ȡ������ᄇ̬��static�����Ե�ֵ��

����

name

��̬���Ե����ƣ�����������ֵ��

def_value

������û�ж��� name �� static ���ԣ�������һ��Ĭ��ֵ�� ������Բ����ڣ�����ʡ���˴˲����������׳� ReflectionException ��

����ֵ

��̬���Ե�ֵ��

����

Example #1 ReflectionClass::getStaticPropertyValue() �Ļ����÷�

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

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

�������̻������

string(3) "Red"

�μ�