wpcf7_strip_newline()CF7 1.0

Strips newline characters.

Хуков нет.

Возвращает

Строку. Processed one-line text.

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

wpcf7_strip_newline( $text );
$text(строка) (обязательный)
Input text.

Код wpcf7_strip_newline() CF7 5.9.3

function wpcf7_strip_newline( $text ) {
	$text = (string) $text;
	$text = str_replace( array( "\r", "\n" ), '', $text );
	return trim( $text );
}