Created
December 2, 2010 20:23
-
-
Save georgemendonca/725991 to your computer and use it in GitHub Desktop.
PHP 5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Exemplo de classe com PHP 5 | |
| * @author george.mendonca | |
| */ | |
| Class Php5 | |
| { | |
| /** | |
| * Visibilidade de atributos | |
| */ | |
| private $a; | |
| private $b; | |
| private $c; | |
| /** | |
| * Método construtor da classe PHP 5 | |
| * Visibilidade de métodos | |
| */ | |
| public function __construct() | |
| { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment