PHP $this-> meaning Analysis _php tutorial

Source: Internet
Author: User
We usually declare a class first, then use this class to instantiate an Object!
However, when we declare this class, we want to use the properties or methods of this class within the class itself. What should be said?
For example:
I declare a user class! It contains only one attribute $name;
Class User
{
Public $_name;
}
Now, I'll add a method to the user class. Just use the GetName () method to output the value of the $name property! Copy PHP content to clipboard
PHP Code:
Copy CodeThe code is as follows:
Class User
{
Public $name;
function GetName ()
{
Echo $this->name;
}
}
How to use it?
$user 1 = new User ();
$user 1->name = ' Zhang San ';
$user 1->getname (); This will output Zhang San!
$user 2 = new User ();
$user 2->name = ' John Doe ';
$user 2->getname (); This will output John Doe!

How do you understand it?
I created two user objects above. $user 1 and $user 2, respectively.
When I call $user 1->getname (). The code in the user class above Echo $this->name; It's the echo $user 1->name;.
That's probably what it means!

http://www.bkjia.com/PHPjc/321004.html www.bkjia.com true http://www.bkjia.com/PHPjc/321004.html techarticle we usually declare a class first, then use this class to instantiate an Object! However, when we declare this class, we want to use the properties or methods of this class within the class itself. Be ...

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