Is there a standard naming convention that is accepted for PHP?
I found PEAR's suggestions here, but they don't give many guidelines at all.
Specifically I am trying to figure out what, if anything, a double underscore leading the name of a variable in a class is supposed to indicate, if anything. i.e. $__blah.
According to PEAR a single underscore is supposed to indicate that a variable is private. Is a double underscore taken as the same thing? Maybe that is supposed to indicate protected?