我知道还有其他方法可以解决这个问题,但为了简单起见,我想知道它是否可以做以下事情:
MyFactory::Create()->callMe();
和myFactory类:
class MyFactory {
private $obj;
public static Create() {
$this->obj = new ClassA();
return $this->obj;
}
public function __undefinedFunctionCall() {
//function does not exist within MyFactory Class but it exists
// in ClassA
$this->obj->callMe();
}
}
所以基本上函数callMe在MyFactory类中不存在,但它存在于ClassA中.不要问我为什么我不能只扩展classA,因为代码结构已经写好了,而不是我修改它.我只需要解决它.
解决方法:
你可以简单地使用method_exists
它需要2个参数method_exists(mixed $object,string $method_name)
所以应该这么简单:
if(method_exists($this->obj,'callMe')){
$this->obj->callMe();
}
else{
//...throw error do some logic
}