$this->

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
tangoking
Forum Newbie
Posts: 9
Joined: Tue Sep 22, 2009 4:31 pm

$this->

Post by tangoking »

newb question... can someone please briefly explain or post a reference to an explanation of the PHP "$this->" construct? Perhaps it's the "->" construct that I don't understand.

I Googled all over, but can't find a simple, concise explanation. I'm building a Joomla template from scratch and they use this reference as follows:

$this->language
$this->template

tyvm
User avatar
Eran
DevNet Master
Posts: 3549
Joined: Fri Jan 18, 2008 12:36 am
Location: Israel, ME

Re: $this->

Post by Eran »

The object scope, from within an object's method

http://www.php.net/manual/en/language.oop5.basic.php
Post Reply