I am deciphering someone's code and am seeing the following
function getsomething() {
return $this->_something;
}
Since I am new to PHP, I don't understand the reference to "$this->" I cannot seem to find to find it using a search. I am finding a series of these in a class.
Can someone give me a pointer?
Thanks
RevJoe