PHP 8.4.0 RC3 available for testing

mb_trim

(PHP 8 >= 8.4.0)

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

Description

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)), un espace ordinaire.
  • "\t" (ASCII 9 (0x09)), une tabulation.
  • "\n" (ASCII 10 (0x0A)), un saut de ligne.
  • "\r" (ASCII 13 (0x0D)), un retour chariot.
  • "\0" (ASCII 0 (0x00)), le caractère NUL.
  • "\v" (ASCII 11 (0x0B)), une tabulation verticale.

Liste de paramètres

string
The string that will be trimmed.
characters
Facultativement, les caractères à supprimer peuvent également être spécifiés en utilisant le paramètre characters. Il suffit de lister tous les caractères qui doivent être supprimés. Avec .., il est possible de spécifier une plage croissante de caractères.
encoding
The string encoding.

Valeurs de retour

The trimmed string.

Voir aussi

  • 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() - Supprime les espaces (ou d'autres caractères) en début et fin de chaîne
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top