> I'm writing a class for POP3 access and I want some of the internal > functions to be private, like the mime decoding stuff. > > Is there any way to do this? I found nothing in the docs :(
Unfortunately, PHP does not understand terms private, public, protected... PHP coders adopted a coding standard to name all 'private' methdods like _methodName() i.e. Beginning with an underscore. That's the best you can do, so live with it :) Cheers Roko -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]