Advertisement
ph4x35ccb

classe e instancia

Mar 11th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. class Classe{
  3.     public $a = 1;
  4.     public $b = 2;
  5.     public $c = 3;
  6. }
  7.  
  8. $objetoA = new Classe();
  9. $objetoB = new Classe();
  10. $objetoC = new Classe();
  11.  
  12. var_dump($objetoA);
  13. echo "<br>";
  14. var_dump($objetoB);
  15. echo "<br>";
  16. var_dump($objetoC);
  17. echo "<br>";
  18. //unset($objetoA); // para  deletar o objeto da memoria
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement