php怎么调用父类的方法

48次阅读
没有评论

共计 756 个字符,预计需要花费 2 分钟才能阅读完成。

在 PHP 中,调用父类的方法有两种方法:

  1. 使用 parent 关键字:
    可以使用 parent 关键字来调用父类的方法。例如,如果子类继承了父类的方法 foo(),可以使用parent::foo() 来调用父类的 foo() 方法。
class ParentClass {protected function foo() {echo "ParentClass foo()";
    }
}

class ChildClass extends ParentClass {public function foo() {parent::foo(); // 调用父类的 foo()方法
        echo "ChildClass foo()";
    }
}

$child = new ChildClass();
$child->foo(); // 输出:"ParentClass foo() ChildClass foo()"
  1. 使用 $this 关键字:
    在子类中,可以使用 $this 关键字来调用父类的方法。例如,如果子类继承了父类的方法 foo(),可以使用$this->foo() 来调用父类的 foo() 方法。
class ParentClass {protected function foo() {echo "ParentClass foo()";
    }
}

class ChildClass extends ParentClass {public function foo() {$this->foo(); // 调用父类的 foo()方法
        echo "ChildClass foo()";
    }
}

$child = new ChildClass();
$child->foo(); // 输出:"ParentClass foo() ChildClass foo()"

无论使用 parent 关键字还是 $this 关键字,都可以调用父类的方法。选择哪种方式取决于具体的情况和个人习惯。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-12发表,共计756字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)