Added comment for php_output_set_status().

Please use this function if you would like to prevent unwanted flush
by implicit_flush=On or ob_implicit_flush().
This commit is contained in:
Yasuo Ohgaki 2002-10-03 08:54:13 +00:00
parent 114c544b9b
commit 6c7202e116

View File

@ -94,7 +94,10 @@ PHPAPI void php_output_activate(TSRMLS_D)
/* {{{ php_output_set_status
Toggle output status */
Toggle output status. Use this function for internal functions uses
buffers. If you don't implict flush (both php.ini implicit_flush and ob_impilict_flush())
may flush your php_printf() output.
status: 0 for disable output, 1 for enable.*/
PHPAPI void php_output_set_status(zend_bool status TSRMLS_DC)
{
OG(disable_output) = !status;