1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 02:52:48 +02:00
Files
archived-php-src/ext/standard
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-26 11:43:01 +00:00
2000-07-26 11:21:03 +00:00
2000-06-29 21:51:40 +00:00
2000-06-26 17:12:38 +00:00
2000-07-22 04:23:41 +00:00
2000-07-27 13:47:03 +00:00
2000-06-19 09:02:48 +00:00
2000-06-05 23:24:42 +00:00
2000-06-16 18:46:57 +00:00
2000-07-02 15:12:34 +00:00
2000-07-09 14:26:50 +00:00
2000-06-23 11:48:02 +00:00
2000-07-26 11:43:01 +00:00
2000-06-23 05:49:32 +00:00
2000-06-09 13:15:19 +00:00