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

说明

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)), an ordinary space.
  • "\t" (ASCII 9 (0x09)), a tab.
  • "\n" (ASCII 10 (0x0A)), a new line (line feed).
  • "\r" (ASCII 13 (0x0D)), a carriage return.
  • "\0" (ASCII 0 (0x00)), the NUL-byte.
  • "\v" (ASCII 11 (0x0B)), a vertical tab.

参数

string
The input string.
characters
Optionally, the stripped characters can also be specified using the characters parameter. Simply list all characters that need to be stripped. With .. it is possible to specify an incrementing range of characters.
encoding
The string encoding.

返回值

Returns the modified string.

参见

  • 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() - 删除字符串末端的空白字符(或者其他字符)
添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top