PHP was born as a (lazy, duck typed) scripting language, and people are still using it this way. Most PHP programmers don't have an idea of what OOP is, I know this problem very well because I started with PHP, and that did cost me a lot of work later. About 90% of PHP code you see around is messy and outdated as of object orientation, readability, encapsulation, etc... At least 50% is pure crap. :(
I can't tell you how much OOP programmers are suprised when they discover that "dependency injection" is actually considered an innovative design pattern by PHP developers, and it needs to be explained.
However, PHP4 had no scope operators such private or protected. At that time, you used to declare a method prepending one or more underscore(s) to the method name in order to indicate it is not meant to be called from external classes.
- Yes it is recommended
- Yes it is, in an OOP perspective
- Naming conventions that hopefully had to be understood by clients