I have a base class with the magic methods __call and _callStatic defined, so that calls to undeclared member functions are handled.
When You have both, the dynamic and static ones, it seems to not be possible to call the static one from a derived class, because the static operator :: does not implicitly mean static if used with parent or, as in this case, the name of the base class. This is a special syntax explained here: http://de.php.net/manual/en/keyword.parent.php
What I want to do here is the derived class to call __callStatic wich fails because the call defaults to beeing a dynamic call and beeing handled by __call.
How can I make an explicitly static call on a base class' member function?
<?php
class MyBaseClass {
public static function __callStatic($what, $args)
{
return 'static call';
}
public function __call($what, $args)
{
return 'dynamic call';
}
}
class MyDerivedClass extends MyBaseClass {
function someAction()
{
//this seems to be interpreted as parent::Foo()
//and so does not imply a static call
return MyBaseClass::Foo(); //
}
}
$bar = new MyDerivedClass();
echo $bar->someAction(); //outputs 'dynamic call'
?>
Note that removing the dynamic __call method makes the script output 'static call' because the __callStatic is called, when __call is not declared.
parent::foo()(which would be a non-static call indeed as the reply says). – Jon Jun 22 '12 at 11:55->someAction()there's a flag being set somewhere that says "the current call is being made in object context", and that trips up the binding resolver later. – Jon Jun 22 '12 at 12:07$thiswill be defined, but$this instanceof selfwill return false. it's a WTF... – ircmaxell Jun 22 '12 at 12:09