Created
December 2, 2010 20:16
-
-
Save georgemendonca/725976 to your computer and use it in GitHub Desktop.
PHP 4
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 4 | |
| * @author george.mendonca | |
| */ | |
| Class Php4 | |
| { | |
| /** | |
| * Atributos simples | |
| */ | |
| var $a; | |
| var $b; | |
| var $c; | |
| /** | |
| * Método construtor da classe PHP 4 | |
| * Métodos simples | |
| */ | |
| function Php4() | |
| { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment