PHP 8.4.0 RC3 available for testing

mb_rtrim

(PHP 8 >= 8.4.0)

mb_rtrimStrip whitespace (or other characters) from the end of a string

Description

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

Performs a multi-byte safe rtrim() operation, and returns a string with whitespace (or other characters) stripped from the end of string.

Without the second parameter, rtrim() 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 input string.
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

Returns the modified string.

Voir aussi

  • mb_trim() - Strip whitespace (or other characters) from the beginning and end of a string
  • mb_ltrim() - Strip whitespace (or other characters) from the beginning of a string
  • rtrim() - Supprime les espaces (ou d'autres caractères) de fin de chaîne
add a note

User Contributed Notes

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