mb_trim

(PHP 8 >= 8.4.0)

mb_trimStrip whitespace (or other characters) from the beginning and end of a string

Beschreibung

mb_trim(string $string, string $characters = null, string $encoding = null): string

Performs a multi-byte safe trim() operation, and returns a string with whitespace stripped from the beginning and end of string. Without the second parameter, trim() will strip these characters:

  • " " (ASCII 32 (0x20)), ein gewöhliches Leerzeichen.
  • "\t" (ASCII 9 (0x09)), ein Tabulatorzeichen.
  • "\n" (ASCII 10 (0x0A)), eine neue Zeile (Zeilenvorschub).
  • "\r" (ASCII 13 (0x0D)), ein Wagenrücklauf.
  • "\0" (ASCII 0 (0x00)), das NUL-Byte.
  • "\v" (ASCII 11 (0x0B)), ein vertikales Tabulatorzeichen.

Parameter-Liste

string
The string that will be trimmed.
characters
Optional können die zu entfernenden Zeichen auch mit dem Parameter characters angegeben werden. Dazu werden einfach alle Zeichen aufgelistet, die entfernt werden sollen. Mit .. kann ein aufsteigender Bereich von Zeichen angegeben werden.
encoding
The string encoding.

Rückgabewerte

The trimmed string.

Siehe auch

  • mb_ltrim() - Strip whitespace (or other characters) from the beginning of a string
  • mb_rtrim() - Strip whitespace (or other characters) from the end of a string
  • trim() - Entfernt Whitespaces (oder andere Zeichen) am Anfang und Ende eines Strings