How to call parent class method in subclass in php

WJ
Release: 2023-03-01 10:26:02
Original
3544 people have browsed it

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"

<?php
class A{
    public $a1=&#39;a1&#39;;
    protected $a2=&#39;a2&#39;;
    function test(){
           echo "hello!<hr/>";
    }
}
Copy after login

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

<?php
class B extends A{//若A类和B类不在同一文件中 请包含后(include)再操作
    public $a1=&#39;b1&#39;;
    function test2(){
            $this->test();
              parent::test();//子类调用父类方法
    }
    function test()
    {   
        echo $this->a1.&#39;,&#39;;
        echo $this->a2.&#39;,&#39;;
        echo "b2_test_hello<hr/>";
    }
}
$a = new B();
$a->test();//b1,a2,b2_test_hello
$a->test2();//b1,a2,b2_test_hello//hello!
Copy after login

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!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!