开发者

Calling a super method in PHP

Can you do something like this in PHP:

functi开发者_如何转开发on foo()
{
    super->foo();

    // do something
}


Yes, it's called parent:: though.

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

    //do something
}


use parent;

parent::foo();


Do you mean calling the parent class method? In that case you would do:

class Bar
{
  public function foo()
  {
    // blah
  }
}


class Baz extends Bar
{
  public function foo() 
  {
    parent::foo();
  }
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜