In php I can do this:
$class = 'Notes';
echo $class::message();
but it seems that from within a method, I can't do this:
echo ($this->myClass)::message();
and also cannot do this:
echo someFunctionThatReturnsClassName()::message();
Can anybody explain why? And give some rules about when and how this indirection mechanism works?
Thank you Gidi