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?
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?
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();
In 5.3, you can simply do
var_dump(property_exists($class, $attribute));