How to call the variables and methods of the parent class in the PHP subclass

Source: Internet
Author: User
<? Phpclass A {public $ a1 = 'a1'; protected $ A2 = 'a2 '; function test () {echo "Hello! <HR/> ";}} Class B extends a {// if Class A and Class B are not in the same file, please include) public $ a1 = 'b1 '; function Test2 () {$ this-> test (); parent: Test (); // subclass calls the parent class method} function test () {echo $ this-> A1. ','; echo $ this-> A2 .','; echo "b2_test_hello <HR/>" ;}}$ A = new B (); $ A-> test (); // B1, A2, b2_test_hello $ A-> Test2 (); // B1, A2, b2_test_hello // Hello!?>

Method call: $ this-> method name (); if this method exists in the subclass, the method in the subclass is called. If not, the method in the parent class is called.

Parent: The method in the parent class is always called.

Variable call: $ this-> variable name. If this variable exists in the subclass, the variable is called in the subclass. If not, the variable is called in the parent class.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.