Guest User

Untitled

a guest
Apr 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. // klassen template
  5. $template = "
  6.     class %s {
  7.         public function doStuff()
  8.         {
  9.             return "blubb";
  10.         }
  11.        }
  12. ";
  13.  
  14. eval(sprintf($template, 'GeileKlasse'));
  15.  
  16.  
  17. $objekt = new GeileKlasse();
  18.  
  19. ?>
Add Comment
Please, Sign In to add comment