Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?
  2.  
  3. class Classe {
  4.  
  5.   public $valor;
  6.  
  7.   public function retornaValor() {
  8.  
  9.     return 'vsf';
  10.  
  11.   }
  12.  
  13.   public function mostraMsg() {
  14.  
  15.     @h@$this->valor = $this->retornaValor();
  16.  
  17.   }
  18.  
  19. }
  20.  
  21. $a = new Classe;
  22. $a->mostraMsg();
  23.  
  24. echo $a->valor;
  25.  
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement