Guest User

Untitled

a guest
Jul 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. class omg
  4. {
  5. public $callback;
  6.  
  7. public function __construct()
  8. {
  9. $this->callback[] = array($this, 'neco');
  10. $this->callback();
  11. }
  12.  
  13. public function neco()
  14. {
  15. die('neco');
  16. }
  17. }
  18.  
  19. new omg;
Add Comment
Please, Sign In to add comment