Can I use magic method to catch the inaccessible static property for Access to undeclared static property
?
for instance,
class greeting
{
static public function init()
{
static::$message = 'Hello World!';
}
/*
* Set the inaccessible property magically.
*/
public function __set($name, $value)
{
var_dump($name); // set the property here?
}
/*
* Get the inaccessible $class magically.
*/
public function __get($name)
{
var_dump($name); // set the property here?
}
}
greeting::init();
var_dump(greeting::$message);
I get,
Fatal error: Access to undeclared static property: greeting::$messsage in C:...
Don't think so. There's no magic method like __getStatic or __setStatic. As far as your question deals with the registry pattern, you can do this:
Use the standard registry pattern:
call:
OR use an abstract registry class with (non-magic) getters and setters:
call:
Advantage: no need to instantiate a Registry class
OR use an abstract registry class with magic callStatic method:
call:
Advantage: Less characters needed to set and get variables.
Disadvantage: Bad performance.
In a little test with 1.000.000 loops I got the following:
Method 1) 2,319s
Method 2) 1,416s
Method 3) 3,708s
So an abstract registry with non-magic (but at least static) getters and setters seems to be the best solution.