isset on static class attributes

2019-07-03 00:30发布

问题:

class A {
    public static $foo = 42;
}

$class = 'A';
$attribute = 'foo';

var_dump(isset($class::$attribute)); //gives bool(false)

How can i checkt, of this static attribute exists in this class?

回答1:

Use variable variables:

var_dump(isset($class::$$attribute)); // the two dollars are intentional

If you don't have PHP 5.3 yet the only accurate way is probably using the Reflection API:

$reflectionClass = new ReflectionClass($class);
$exists = $reflectionClass->hasProperty($attribute) && $reflectionClass->getProperty($attribute)->isStatic();


回答2:

In 5.3, you can simply do

var_dump(property_exists($class, $attribute));