fork(1) download
  1. <?php
  2.  
  3. class Ivan
  4. {
  5. public function getName()
  6. {
  7. return "Ivan";
  8. }
  9. }
  10.  
  11. class Semyon extends Ivan
  12. {
  13. public function getName()
  14. {
  15. // вызываем метод из класса A
  16. $parentName = parent::getName();
  17. return "Semyon, son of $parentName";
  18. }
  19. }
  20.  
  21. $person = new Semyon();
  22. echo $person->getName();
  23.  
  24.  
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
Semyon, son of Ivan