我不完全确定你在问什么......你想明确地调用父类的魔术方法吗?如果是这样,您可以使用类的parent引用:
class Object extends dbObj{
// ...
// this is what i'm assuming you're looking for:
public function __call($method, $variables){
return parent::__call($method, $variables);
}
}
Run Code Online (Sandbox Code Playgroud)