1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00
Files
archived-php-src/main
Zeev Suraski 52ff887db5 Made ob_start() and friends reentrant. It's now possible to implement this
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;
}
2000-07-29 14:46:09 +00:00
..
2000-07-21 15:54:10 +00:00
2000-07-29 10:48:57 +00:00
2000-04-19 23:18:15 +00:00
2000-02-11 15:59:30 +00:00
2000-03-04 19:58:59 +00:00
2000-07-29 10:48:57 +00:00
2000-07-29 10:48:57 +00:00