Created
December 3, 2010 00:11
-
-
Save georgemendonca/726355 to your computer and use it in GitHub Desktop.
Variável $this
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 | |
| /** | |
| * Pseudo código PHP exemplificando a variável $this | |
| * @author george.mendonca | |
| */ | |
| class Classe | |
| { | |
| encapsulamento $atributo; | |
| ... | |
| encapsulamento function nome_metodo() | |
| { | |
| return $this->atributo; | |
| } | |
| ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment