wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_ob_end_flush_all › WordPress Function

Seit2.2.0
Veraltetn/v
wp_ob_end_flush_all ( Keine Parameter )
Definiert in:
Codex:

Flushes all output buffers for PHP 5.2.

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


Quellcode

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