RedFoxy

Untitled

Jul 29th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $test = new x();
  5.  
  6. class X
  7. {
  8.     function X()
  9.     {
  10.         $this->funzione();
  11.     }
  12. }
  13.  
  14. class x_XX extends X
  15. {
  16.     function funzione()
  17.     {
  18.         echo "Funziona!";
  19.     }
  20. }
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment