PHP 8.4.0 RC4 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 SP 字符 0x20,一个普通的空格。
  • "\t"ASCII HT 字符 0x09,一个制表符。
  • "\n"ASCII LF 字符 0x0A,一个换行符。
  • "\r"ASCII CR 字符 0x0D,一个回车符。
  • "\0"ASCII NUL 字符 0x00,一个 NUL 字节。
  • "\v"ASCII VT 字符 0x0B,一个垂直制表符。

参数

string
The input string.
characters
可选,也可以使用 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