PHP--new self () and new static

Source: Internet
Author: User

See an excerpt from the online code

classA { Public Static functionget_self () {return NewSelf (); }    Public Static functionget_static () {return New Static(); }} classBextendsA {}Echo Get_class(B::get_self ());//AEcho Get_class(B::get_static ());//BEcho Get_class(A::get_static ());//A

Popular point is:

New self (); In which class executes the code, which returns the object of the class. If the code is written only in the parent class, even if the subclass inherits from the parent class, the returned object is still the parent class.

New Static (); Which class calls it, returns the object of which class.

PHP--new self () and new static

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.