How does the inheritance method of PHP get the subclass name? Get_class () and Get_called_class

Source: Internet
Author: User

<?PHPclassa{function__construct () {Echo __class__; }    Static functionname () {Echo __class__; }}classBextendsa{}$objB=NewB ();//Output AB::name ();//Output A

At this point, whether you instantiate B or call the static method directly, Echo will come out with a.

And what I actually want to get is the name of sub-category B! How does that work?

PHP comes with two functions get_class () and Get_called_class () to solve this problem.

Get_class () is used for instance invocation, the addition of parameters ($this) solves the problem of subclass inheritance calls, and Get_called_class () is used for static method calls.

<?PHPclassa{function__construct () {Echo Get_class($this); }    Static functionname () {EchoGet_called_class (); }}classBextendsa{}$objB=NewB ();//Output BB::name ();//Output B

How does the inheritance method of PHP get the subclass name? Get_class () and Get_called_class

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.