Advertisement
Geicy

Untitled

Jul 30th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. class Pessoa {
  4.     private $dados = array();
  5.  
  6.     public function __set($nome, $valor){
  7.         $this->dados[$nome] = $valor;
  8.     }
  9.  
  10.     public function __get($nome){
  11.         return $this->dados[$nome];
  12.     }
  13.  
  14.     public function __tostring(){
  15.         return "Tentei imprimir o objeto";
  16.  
  17.     }
  18. }
  19.  
  20. $pessoa = new Pessoa();
  21. $pessoa->nome = "Igor";
  22. $pessoa->idade = 25;
  23. $pessoa->sexo = "M";
  24.  
  25. echo $pessoa;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement