WP_Importer::min_whitespace()
Replaces newlines, tabs, and multiple spaces with a single space.
Метод класса: WP_Importer{}
Хуков нет.
Возвращает
Строку
.
Использование
$WP_Importer = new WP_Importer(); $WP_Importer->min_whitespace( $text );
- $text(строка) (обязательный)
- -
Код WP_Importer::min_whitespace() WP Importer::min whitespace WP 6.6.2
public function min_whitespace( $text ) { return preg_replace( '|[\r\n\t ]+|', ' ', $text ); }