$this

$this is a variable that represents the current object. It is different in each object / class.

$this is also called a pseudo-variable. There is no special variable called $that.

<?php

class x {
     private $y = 1;

     function foo() {
             return $this->y;
     }
}

?>

Documentation

See also PHP $this, The $this keyword