What does the variable $this mean in PHP? (ok)
https://stackoverflow.com/questions/1523479/what-does-the-variable-this-mean-in-php
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
}
}function variable
member variableLast updated