在 PHP 中调用超级方法
你能在PHP中做这样的事情吗:
function foo()
{
super->foo();
// do something
}
你能在PHP中做这样的事情吗:
function foo()
{
super->foo();
// do something
}
是的,它被称为。parent::
public function foo()
{
parent::foo(); // this is not a static method call, even though it looks like one
//do something
}