WPSEO_Utils::trim_nbsp_from_string()public staticYoast 2.0.0

Trim whitespace and NBSP (Non-breaking space) from string.

Метод класса: WPSEO_Utils{}

Хуков нет.

Возвращает

Строку.

Использование

$result = WPSEO_Utils::trim_nbsp_from_string( $text );
$text(строка) (обязательный)
String input to trim.

Список изменений

С версии 2.0.0 Введена.

Код WPSEO_Utils::trim_nbsp_from_string() Yoast 22.4

public static function trim_nbsp_from_string( $text ) {
	$find = [ ' ', chr( 0xC2 ) . chr( 0xA0 ) ];
	$text = str_replace( $find, ' ', $text );
	$text = trim( $text );

	return $text;
}