Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function evalCode($code)
  2. {
  3. ob_start();
  4. // comment out. idk what it breaks but it's a fix for now
  5. //eval($code);
  6. $output = ob_get_contents();
  7. ob_end_clean();
  8. return $output;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement