PHP new self vs. new static

Source: Internet
Author: User

Self refers to the same class whose method, the new operation takes place in.

Static in PHP 5.3 's late static bindings refers to whatever class in the hierarchy which the method on.

In the following example, B inherits both methods from A. Self is bound to a because it's defined in a ' s implementation of The first method, whereas static is bound to the called Class (also see Get_called_class ()).

Class A {public  static function get_self () {    return to new self ();  }   public static function Get_static () {    return new static ()  }} class B extends A {} echo Get_class (B::get_self ()); Aecho Get_class (B::get_static ()); Becho Get_class (A::get_static ()); A

  

PHP new self vs. 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.