Home>Article>Backend Development> How to call parent class method in subclass in php

How to call parent class method in subclass in php

WJ
WJ Original
2020-06-01 13:46:40 3366browse

How to call parent class method in subclass in php

php calls the method of the parent class in the subclass:

First create a parent class A and declare a method "test"

"; } }

Then create subclass B, use the keyword "extends" to inherit parent class A, create subclass B, use "parent::test()"

test(); parent::test();//子类调用父类方法 } function test() { echo $this->a1.','; echo $this->a2.','; echo "b2_test_hello
"; } } $a = new B(); $a->test();//b1,a2,b2_test_hello $a->test2();//b1,a2,b2_test_hello//hello!

Related references:php中文网

The above is the detailed content of How to call parent class method in subclass in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn