Possible Duplicate:
What's the deal with a leading underscore in PHP class methods?
I think it's pretty descriptive... what does it mean if you see a function starting with an underline in php? I've seen it many times and I still don't know what it is! It still works but it just looks weird starting with an underline and I suspect it's just a convention but I don't know what it is. I am not talking about double underlined functions ( i.e. __construct()) but a single underline.
My best guess is that it means it's your own unique function and you want others to know that?