function parse($file) {
global $str;
ob_start();
include($file);
$buffer = ob_get_contents();
ob_end_clean();
return $buffer;
}

function parse($file) { global $str;  ob_start();  include($file);  $buffer = ob_get_contents();  ob_end_clean();  return $buffer;}

Leave a comment