Guest User

Untitled

a guest
Jul 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. class Cryptor
  3.  
  4. {
  5.     function CryptHTML()
  6.     {
  7.         echo 'криптим хтмл';
  8.     }
  9.  
  10.  
  11. }
  12.  
  13. class CryptJS extends Cryptor
  14.  
  15. {
  16.     function CryptJS()
  17.     {
  18.         return 'криптим жс';
  19.     }
  20. }
  21.  
  22. $d = new CryptJS();
  23.  
  24. echo $d->CryptJS();
  25.  
  26. ?>
Add Comment
Please, Sign In to add comment