Skip to content

Instantly share code, notes, and snippets.

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;
}