Hi,
It's possible to call a static variable/method from an instance:
Object::my_stat ic_var
I need to do something like this
$obj = new Object(); // (I have dynamic Object type)
$obj::my_static _var
There's any workaround?
Thanks in advance,
Luca
It's possible to call a static variable/method from an instance:
Object::my_stat ic_var
I need to do something like this
$obj = new Object(); // (I have dynamic Object type)
$obj::my_static _var
There's any workaround?
Thanks in advance,
Luca
Comment