Advertisement
Geicy

Untitled

Jul 20th, 2021
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. class Pessoa {
  4.     public $nome;
  5.     public $idade;
  6.  
  7.     public function Falar(){
  8.         echo $this->nome." de " .$this->idade." acabou de falar";
  9.     }
  10. }
  11.  
  12. $geicy = new Pessoa();
  13. $geicy->nome = "Geicy Rodrigues";
  14. $geicy->idade = 21;
  15. $geicy->Falar();
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement