Depends on whose coding conventions you want to follow. PHP doesn't care if you start your variable names with or T or what. Prefixing variable names with "_" to indicate they're private comes from Python, where it actually works. This convention has been exported to other languages as a self-documentation technique; sometimes the convention document says that this is done "by order of Guido". But like I said, PHP doesn't care - it's solely for the sake of the user of the class to indicate which properties it is safe for them to play with and which aren't.
Of course, in PHP5 you can expicitly declare methods and properties private, and lock them away from user manipulation (thus achieving what "_" was introduced into Python in the first place for), so the whole thing becomes moot anyway.