What does the variable $this mean in PHP? (ok)

https://stackoverflow.com/questions/1523479/what-does-the-variable-this-mean-in-php

Tôi biết câu hỏi cũ của nó, dù sao một lời giải thích chính xác khác về $this. $this chủ yếu được sử dụng để chỉ các thuộc tính của một lớp.

Example:

Class A
{
   public $myname;    //this is a member variable of this class

function callme() {
    $myname = 'function variable';
    $this->myname = 'Member variable';
    echo $myname;                  //prints function variable
    echo $this->myname;              //prints member variable
   }
}

output:

function variable

member variable

Last updated