PHP Delay Binding

Source: Internet
Author: User

1 classproduct{2      Public Static functionCreate () {3         return New Static();4     }5 }6 7 classFoodextendsproduct{8 9 }Ten  One Var_dump(Food::create ()); A //food::out ();

The above code output: Object (food) #1 (0) {}

Class product{public    static function create () {        return to new self ();    }} Class Food extends Product{}var_dump (food::create ());

The above code output: Object (product) #1 (0) {}

A self and static difference, self is the parsing context, not the reference context. In PHP 5.3, the new feature, delay binding, static is similar to self, but it refers to the class being called instead of the containing class.

PHP Delay Binding

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.