wp_ob_end_flush_all()
Flush all output buffers for PHP 5.2.
Description Description
Make sure all output buffers are flushed before our singletons are destroyed.
Source Source
File: wp-includes/functions.php
function wp_ob_end_flush_all() { $levels = ob_get_level(); for ( $i = 0; $i < $levels; $i++ ) { ob_end_flush(); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.2.0 | Introduced. |