ReflectionClass::getStaticPropertyValue
(PHP 5 >= 5.1.0)
ReflectionClass::getStaticPropertyValue — Gets static property value
Descrierea
Gets the value of a static property on this class.
Parametri
-
name -
The name of the static property for which to return a value.
-
def_value -
Valorile întoarse
The value of the static property.
Exemple
Example #1 Basic usage of ReflectionClass::getStaticPropertyValue()
<?php
class Apple {
public static $color = 'Red';
}
$class = new ReflectionClass('Apple');
var_dump($class->getStaticPropertyValue('color'));
?>
Exemplul de mai sus va afișa:
string(3) "Red"
Vedeți de asemenea
- ReflectionClass::getStaticProperties() - Gets static properties
- ReflectionClass::setStaticPropertyValue() - Sets static property value
