Skip to content

Instantly share code, notes, and snippets.

@nickcano
Created September 25, 2019 07:46
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickcano/4b8dbc93c463f9e2c983d03ceae61774 to your computer and use it in GitHub Desktop.
Save nickcano/4b8dbc93c463f9e2c983d03ceae61774 to your computer and use it in GitHub Desktop.
function evalCode($code)
{
ob_start();
// comment out. idk what it breaks but it's a fix for now
//eval($code);
$output = ob_get_contents();
ob_end_clean();
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment