The methods with two underscores at the start are usually what's called "magic" methods. This includes __toString(), __call(), __get(), and __set(). There are more, but as far as naming conventions go, all you need to know is don't use a double underscore for your own method names. The double underscore was added to avoid conflicts with user functions, so adding your own defeats the purpose. :)
Constants are generally all in caps with underscores between. Sometimes they're prefixed with a common library name or something to show which constants are related to each other. for example: ENT_QUOTES, ENT_NO_QUOTES
Variables and function names should be lowerCamelCase, whereas class names should be UpperCamelCase.
Another convention is to start private variables and functions with a (single) underscore. This doesn't do anything special, though some frameworks (who still need PHP4 compatibility) treat these members as private implicitly. Given PHP5 has the private keyword, using an underscore before your private variables/functions is optional.