Definition:
function wp_ob_end_flush_all() {}
Flush all output buffers for PHP 5.2.
Make sure all output buffers are flushed before our singletons our destroyed.
Source code
function wp_ob_end_flush_all() {
$levels = ob_get_level();
for ($i=0; $i<$levels; $i++)
ob_end_flush();
}
3959

February 12, 2011 


No comments yet... Be the first to leave a reply!