View Single Post
Old 10-26-2008, 11:05 PM   #10 (permalink)
Enfernikus
The Addict
 
Enfernikus's Avatar
 
Join Date: Jun 2008
Posts: 335
Thanks: 2
Enfernikus is on a distinguished road
Default

Sorry for the disgusting grammar errors in the example...Wrote it rather quickly.

PHP Code:

<?php

class Example
{
        
//This can be access by anyone
        
public function doThis() {}
        
        
//This can be access only the class and
        //the classes's children
        
protected function doThat() {}
        
        
//This can ONLY be used the class Example
        
private function doThese() {}
}

?>
Enfernikus is offline  
Reply With Quote