Where\'s the difference between self and $this-> in a PHP class or PHP method?
self
$this->
Example:
I\'ve seen this code recently.
self refers to the calling object's class. $this refers to the object itself.
$this