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



normalize_whitespace › WordPress Function

Seit2.7.0
Veraltetn/v
normalize_whitespace ( $str )
Parameter:
  • (string) $str The string to normalize.
    Erforderlich: Ja
Gibt zurück:
  • (string) The normalized string.
Definiert in:
Codex:

Normalizes EOL characters and strips duplicate whitespace.



Quellcode

function normalize_whitespace( $str ) {
	$str = trim( $str );
	$str = str_replace( "\r", "\n", $str );
	$str = preg_replace( array( '/\n+/', '/[ \t]+/' ), array( "\n", ' ' ), $str );
	return $str;
}