normalize_whitespace( string $str )

Normalize EOL characters and strip duplicate whitespace.


Description Description


Parameters Parameters

$str

(string) (Required) The string to normalize.


Top ↑

Return Return

(string) The normalized string.


Top ↑

Source Source

File: wp-includes/formatting.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.