|
ob_end_flushFlush (send) the output buffer and turn off output buffering Description
bool ob_end_flush
( void
)
This function will send the contents of the topmost output buffer (if any) and turn this output buffer off. If you want to further process the buffer's contents you have to call ob_get_contents before ob_end_flush as the buffer contents are discarded after ob_end_flush is called. The output buffer must be started by ob_start with PHP_OUTPUT_HANDLER_FLUSHABLE and PHP_OUTPUT_HANDLER_REMOVABLE flags. Otherwise ob_end_flush will not work.
Return Values
Returns Errors/Exceptions
If the function fails it generates an Examples
Example #1 ob_end_flush example The following example shows an easy way to flush and end all output buffers:
<?php See Also
|