|
flushFlush system output buffer Description
void flush()
Flushes the system write buffers of PHP and the backend used by PHP (e.g.: CGI, a web server). In a command line environment flush will attempt to flush the contents of the buffers only whereas in a web context headers and the contents of the buffers are flushed.
Warning
flush can interfere with output handlers that set and send headers in a web context (e.g. ob_gzhandler) by sending headers before these handlers can do so. ParametersThis function has no parameters. Return ValuesNo value is returned. See Also
|