在PHP中调用超级方法

时间:2010-09-20 19:49:18

标签: php oop

你可以在PHP中做这样的事情:

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

    // do something
}

3 个答案:

答案 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();
  }
}