PHP object-oriented constructor description

Source: Internet
Author: User
: This article describes PHP Object-oriented constructors. For more information about PHP tutorials, see. This article will not go into detail on object-oriented knowledge. This article focuses on PHP constructor.
Php constructor can be magic cube _ construct () or a function with the same name as the class. The example is as follows:

classA{publicfunctionA(){echo'A is constructing...';    }  } classB{publicfunction__construct(){echo'B is contructing...';    } } $a = new A();   // A is constructing...$b = new B();   // B is constructing...

In addition, you should note that:
Sub-classes can use the constructor of the parent class without writing constructor.]

classA{protected$name;    publicfunctionA(){echo'A is constructing...
'; } publicfunctionset_name($name){$this->name = $name; } publicfunctionget_name(){return$this->name; } } classBextendsA{/* public function __construct(){ echo 'B is contructing...
'; } */ } //$a = new A();$b = new B(); // A is constructing...$b->set_name('zhangsan'); echo$b->get_name();

If the subclass has a constructor, the constructor of the parent class will no longer be called.]

classA{protected$name;    publicfunctionA(){echo'A is constructing...
'; } publicfunctionset_name($name){$this->name = $name; } publicfunctionget_name(){return$this->name; } } classBextendsA{publicfunction__construct(){echo'B is contructing...
'; } } //$a = new A();$b = new B(); // just echo 'B is contructing...'$b->set_name('zhangsan'); echo$b->get_name(); // zhangsan

If the constructor of the parent class is private, it can be inherited, but the sub-class must have its own constructor and be clearly written.]

classA{protected$name;    privatefunctionA(){echo'A is constructing...
'; } publicfunctionset_name($name){$this->name = $name; } publicfunctionget_name(){return$this->name; } } classBextendsA{publicfunction__construct(){echo'B is contructing...
'; } } //$a = new A();$b = new B(); // B is contructing...$b->set_name('zhangsan'); echo$b->get_name(); // zhangsan

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

The above introduces the PHP object-oriented constructor description, including the content, hope to be helpful to friends who are interested in the PHP Tutorial.

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.