ReflectionClass::getStaticProperties

(PHP 5)

ReflectionClass::getStaticPropertiesВозвращает static свойства

Описание

public array ReflectionClass::getStaticProperties ( void )

Возвращает static (статические) свойства.

Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Массив (array) static свойств.

Смотрите также

Коментарии

I had the need to recursive merge the results from a subclass with all of it's parents, and this was the resulting code:

<?php
function GetStaticPropertiesRecursive($class) {
   
$currentClass $class;
   
$joinedProperties = array();
    do {
       
$reflection = new ReflectionClass($class);
       
$staticProperties $reflection->getStaticProperties();
        foreach (
$staticProperties as $name => $value) {
            if (
is_array($value)) {
                if (isset(
$joinedProperties[$name]))
                   
$joinedProperties[$name] = array_merge($value$joinedProperties[$name]);
                else
                   
$joinedProperties[$name] = $value;
            } else {
                if (isset(
$joinedProperties[$name]))
                   
$joinedProperties[$name][] = $value;
                else
                   
$joinedProperties[$name] = array($value);
            }
        }
    } while (
$class get_parent_class($class));
    return 
$joinedProperties;
}

Using this function:
class 
base {
    public static 
$Test = array("foo1""foo2");
}
class 
sub extends base {
    public static 
$Test "sub";
}

print_r(GetStaticPropertiesRecursive("sub"));
?>

That outputs:
Array
(
    [Test] => Array
        (
            [0] => foo1
            [1] => foo2
            [2] => sub
        )

)

The merge follows the rules of array_merge on duplicate keys.
2010-05-08 13:03:02
http://php5.kiev.ua/manual/ru/reflectionclass.getstaticproperties.html
getStaticProperties return a set of the property itself. It's diferente from getProperties(ReflectionProperty::IS_STATIC) because it return a set of ReflectionProperty class.
2016-03-24 15:06:27
http://php5.kiev.ua/manual/ru/reflectionclass.getstaticproperties.html

    Поддержать сайт на родительском проекте КГБ