Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Pretty much everytime I am coding OO code in PHP I wonder about the syntactical necessity of preluding attributes with $this.

It's not common in C++ nor in Java.

What makes it necassary in PHP? Am I missing something?

The QUESTION is ... what is the specific reason why PHP enforces using it apart from just historical habits? Or ... is it really just an unnessecary disambiguation? Yes or no?

share|improve this question
9  
It is common in many other languages, though (js, python...) and I think it adds much to clarity. – Andrea Feb 25 '11 at 14:52
Its in the language, sadly enough. No way around it, except maybe extract-ing $this every time. Thats not recommended though. – TJHeuvel Feb 25 '11 at 14:54
In Java you can alsoaccess class properties with this. – hsz Feb 25 '11 at 14:54
If you are using a member many times locally, you can ease the pain a bit with $that = &$this->that – Explosion Pills Feb 25 '11 at 14:55
@Andrea: JS is certainly no source for good reasons to do or not do something. Also if you think about the fact that the most complex software-systems ever have been programmed in C++ and Java, the clarity-argument heavily looses credibility. – Яaffael1984 Feb 25 '11 at 14:56
show 8 more comments

closed as not a real question by Phill Sacre, dogbane, Adnan, David Stratton, hsz Feb 25 '11 at 14:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

check out this related question:

[PHP] Why is the usage of $this necessary when referencing methods or variables in the same class?

share|improve this answer
the question is related, but the accepted answer is none ... cause it reasons with OOP+imperative, but C++ is facing the same set up and doesn't need "$this". – Яaffael1984 Feb 25 '11 at 15:01
1  
Until recently (pre-php5.3), there were no namespaces so there was no way to differentiate between a global function and a local method, except '$this'. – linepogl Feb 25 '11 at 15:07
intersting aspect. – Яaffael1984 Feb 25 '11 at 15:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.