Deep Dive into PHP self and $this _php tutorial

Source: Internet
Author: User
Let's talk about parent and self:
Copy CodeThe code is as follows:
/*
* Created by Yinyiniao
*/
Class a{
function __construct () {
The construction method of echo "base Class A"
";
}
}
Class B extends a{
function __construct () {
Parent::__construct ();
How to construct echo "sub-Class B"
";
Self::myfun ();
}
function Myfun () {
echo "A common method Myfun ()
";
}
}
$obj =new A ();
$obj =new B ();
?>

Self and $this are very similar in function, but they are not the same. $this cannot reference static members and constants. Self is more like a class skill, and $this is more like the instance itself.

http://www.bkjia.com/PHPjc/327493.html www.bkjia.com true http://www.bkjia.com/PHPjc/327493.html techarticle let's talk about parent and self: Copy code code as follows:? PHP/* * Created by Yinyiniao */class a{function __construct () {echo "base Class A construction method br/";}} Class B extends a{function ...

  • 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.