wp_ob_end_flush_all() – Flush all output buffers for PHP 5.2.
You appear to be a bot. Output may be restricted
Description
Flushes all output buffers for PHP 5.2.
Make sure all output buffers are flushed before our singletons are destroyed.
Usage
wp_ob_end_flush_all();
Parameters
Returns
void
Source
File name: wordpress/wp-includes/functions.php
Lines:
1 to 6 of 6
function wp_ob_end_flush_all() { $levels = ob_get_level(); for ( $i = 0; $i < $levels; $i++ ) { ob_end_flush(); } }