When would you use the $this keyword in PHP? From what I understand $this refers to the object created without knowing the objects name.
$this
Al
Whenever you want to use a variable that is outside of the function but inside the same class, you use $this. It is a core php concept.