When would you use the $this keyword in PHP? From what I understand $this refers to the object created without knowing the objects name.
Al
The use $this is to reference methods or instance variables belonging to the current object
$this->name = $name or $this->callSomeMethod()
that is going to use the variable or method implemented in the current object subclassed or not.
If you would like to specifically call an implementation of of the parent class you would do something like
parent::callSomeMethod()