Advertisement
mvsp

index_aula2.php

Jul 21st, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. class Pessoa{
  3.     public $nome;
  4.     public $idade;
  5.  
  6.     public function Falar(){
  7.         echo $this->nome." de idade ".$this->idade." acabou de falar.";
  8.     }
  9. }
  10.  
  11. $marcos = new Pessoa();
  12. $marcos->nome = "Marcos";
  13. $marcos->idade = "20";
  14. $marcos->Falar();
  15. echo "<br>";
  16. //var_dump($marcos);
  17.  
  18. //Exibição dos Atributos
  19. echo $marcos->nome."<br>".$marcos->idade;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement