mirror of
https://github.com/php/php-src.git
synced 2026-04-10 17:43:13 +02:00
long-requested functionality, now that output buffering is re-entrant:
function eval_ret($code)
{
ob_start();
eval($code);
$retval = ob_get_contents();
ob_end_clean();
return $retval;
}
3.1 KiB
3.1 KiB