Advertisement
Gleidson_21

Constantes,Self e parent

Jul 30th, 2021
205
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.  
  3. class Pessoa {
  4.     const nome = "maria";
  5.  
  6.     public function exibirNome(){
  7.         echo self::nome;
  8.     }
  9. }
  10.  
  11. class Maria extends Pessoa{
  12.  
  13.     const nome = "jurema";
  14.  
  15.     public function exibirNome(){
  16.         echo parent::nome;
  17.     }
  18.    
  19. }
  20.  
  21. $maria = new Maria();
  22. $maria->exibirNome();
  23. ?>
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement