你可以在PHP中做这样的事情:
function foo()
{
super->foo();
// do something
}
答案 0 :(得分:96)
是的,虽然它被称为parent::
。
public function foo()
{
parent::foo(); // this is not a static method call, even though it looks like one
//do something
}
答案 1 :(得分:11)
使用parent;
parent::foo();
答案 2 :(得分:7)
你的意思是调用父类方法吗?在这种情况下,你会这样做:
class Bar
{
public function foo()
{
// blah
}
}
class Baz extends Bar
{
public function foo()
{
parent::foo();
}
}