$this in PHP
$this is a special variable, Its reffers to current object. To access a private or protected property we need this keyword for accessing them.
So, $this -> means current object.
Example:
public function getProduct()
{
return $this->type;
}
This function is reffering the ‘type’ property of the current object of getProduct method.
View On WordPress















