1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 18:13:00 +02:00
Files
archived-php-src/ext
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-18 19:13:14 +00:00
2000-07-13 18:44:57 +00:00
2000-07-13 19:09:32 +00:00
2000-07-18 22:38:22 +00:00
2000-07-17 21:13:44 +00:00
2000-07-14 18:42:35 +00:00
2000-07-20 15:27:16 +00:00
2000-07-15 16:09:18 +00:00
2000-07-16 18:51:00 +00:00
2000-07-25 00:29:52 +00:00
2000-07-05 15:18:26 +00:00
2000-05-01 22:38:42 +00:00