wpcf7_strip_newline()
Strips newline characters.
Хуков нет.
Возвращает
Строку
. Processed one-line text.
Использование
wpcf7_strip_newline( $text );
- $text(строка) (обязательный)
- Input text.
Код wpcf7_strip_newline() wpcf7 strip newline CF7 5.7.5.1
function wpcf7_strip_newline( $text ) { $text = (string) $text; $text = str_replace( array( "\r", "\n" ), '', $text ); return trim( $text ); }