Skip to content

Instantly share code, notes, and snippets.

@georgemendonca
Created December 3, 2010 00:11
Show Gist options
  • Select an option

  • Save georgemendonca/726355 to your computer and use it in GitHub Desktop.

Select an option

Save georgemendonca/726355 to your computer and use it in GitHub Desktop.
Variável $this
<?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