10-26-2008, 11:05 PM
|
#10 (permalink)
|
|
The Addict
Join Date: Jun 2008
Posts: 335
Thanks: 2
|
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() {} }
?>
|
|
|
|