|
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.
Return Values
Returns Errors/Exceptions
If the function fails it generates an Changelog
Examples
Example #1 ob_end_flush example The following example shows an easy way to flush and end all output buffers:
<?php See Also
|