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?

extract-ing $this every time. Thats not recommended though. – TJHeuvel Feb 25 '11 at 14:54this.– hsz Feb 25 '11 at 14:54$that = &$this->that– Explosion Pills Feb 25 '11 at 14:55