Содержание
- PHP trim() Function
- Definition and Usage
- Syntax
- Parameter Values
- Technical Details
- More Examples
- Example
- Example
- COLOR PICKER
- Report Error
- Thank You For Helping Us!
- Удаление лишних пробелов в PHP.
- Удаление пробелов в начале или конце строки.
- Удаление лишних пробелов в самом тексте.
- Удаление «не удаляемых» пробелов.
- trim
- Возвращаемые значения
- Примеры
- Примечания
- Смотрите также
- User Contributed Notes 2 notes
- Php обрезать лишние пробелы
- Синтаксис trim в php
- Разберем синтаксис trim в php
- trim() удаляет следующие символы по умолчанию:
- Пример использования trim в php
- Синтаксис array_trim
- Разберем синтаксис array trim
- Как работает array_trim
- PHP — КАК УБРАТЬ ПРОБЕЛЫ С НАЧАЛА И КОНЦА СТРОКИ
- Синтаксис функции.
- Примеры использования trim().
PHP trim() Function
Remove characters from both sides of a string («He» in «Hello» and «d!» in «World»):
Definition and Usage
The trim() function removes whitespace and other predefined characters from both sides of a string.
- ltrim() — Removes whitespace or other predefined characters from the left side of a string
- rtrim() — Removes whitespace or other predefined characters from the right side of a string
Syntax
Parameter Values
- «\0» — NULL
- «\t» — tab
- «\n» — new line
- «\x0B» — vertical tab
- «\r» — carriage return
- » » — ordinary white space
Technical Details
Return Value: | Returns the modified string |
---|---|
PHP Version: | 4+ |
Changelog: | The charlist parameter was added in PHP 4.1 |
More Examples
Example
Remove whitespaces from both sides of a string:
The HTML output of the code above will be (View Source):
Without trim: Hello World!
With trim: Hello World!