Late static binding of PHP

Source: Internet
Author: User
This article mainly introduces the late static binding of PHP, has a certain reference value, now share to everyone, the need for friends can refer to

PHP 5.3.0, PHP added a function called late static binding, used to refer to statically invoked classes within the scope of the inheritance, this is the official PHP explanation, that is, in the class inheritance process, the class is no longer the current class, but the call class.

Later static bindings are implemented using the keyword static, which, through this mechanism, "static:" is not parsed to define the class in which the current method is located, but is computed at the actual run time, the class originally called at runtime.

Although it is called a late static binding, it is not limited to the invocation of static methods.

Class a{public    static function call () {        echo "class a<br/>";    }    public static function test () {        self::call ();        Static::call ();    }} Class B extends a{public    static function call () {        echo "Class B";    }} Echo (B::test ());//output result://class a//class B

The above is the whole content of this article, I hope that everyone's learning has helped, more relevant content please pay attention to topic.alibabacloud.com!

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.