I was explaining to a Java developer why his method call wasn\'t working. He just needed to add $this->method_name();
$this->method_name();
He then asked me, \"Why do
$this refers to the calling object. The PHP docs have good examples and further details.