Guest User

Untitled

a guest
Dec 22nd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>FACULDADE</title>
  5. </head>
  6. <body><pre>
  7.     <?php
  8.  
  9.         require 'Pessoa.php';
  10.         require 'Aluno.php';
  11.         require 'Professor.php';
  12.         require 'Funcionario.php';
  13.  
  14.         $p1 = new Pessoa();
  15.         $p2 = new Aluno();
  16.         $p3 = new Professor();
  17.         $p4 = new Funcionario();
  18.  
  19.         $p1->setNome('Pedro');
  20.  
  21.         print_r($p1);
  22.     ?></pre>
  23. </body>
  24. </html>
Add Comment
Please, Sign In to add comment