在 PHP 中调用超级方法

2022-08-30 10:26:03

你能在PHP中做这样的事情吗:

function foo()
{
    super->foo();

    // do something
}

答案 1

是的,它被称为。parent::

public function foo()
{
    parent::foo(); // this is not a static method call, even though it looks like one

    //do something
}

答案 2

使用父级;

parent::foo();


推荐