wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_ob_end_flush_all › WordPress Function

Da2.2.0
Deprecaton/a
wp_ob_end_flush_all ( Nessun parametro )
Definito a:
Codex:

Flushes all output buffers for PHP 5.2.

Make sure all output buffers are flushed before our singletons are destroyed.


Sorgenti

function wp_ob_end_flush_all() {
	$levels = ob_get_level();
	for ( $i = 0; $i < $levels; $i++ ) {
		ob_end_flush();
	}
}