php-src/sapi/cgi
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
..
cgi_main.c Made ob_start() and friends reentrant. It's now possible to implement this 2000-07-29 14:46:09 +00:00
config.m4 Wipe out acconfig.h.in and rewrite some checks to use PHP_ARG_ENABLE. 2000-06-08 06:14:58 +00:00
getopt.c More abstraction 2000-02-10 16:44:59 +00:00
Makefile.in Remove trailing empty lines 2000-05-01 22:38:42 +00:00
php_getopt.h More abstraction 2000-02-10 16:44:59 +00:00
php.sym --enable-versioning can now be used with CGI/AOLserver as well. Note that 1999-11-20 19:00:17 +00:00