mb_trim

(PHP 8 >= 8.4.0)

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

说明

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 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 string that will be trimmed.
characters
可选,也可以使用 characters 参数指定要剥离的字符。 只需列出所有需要剥离的字符。 使用 .. 可以指定一个递增的字符范围。
encoding
The string encoding.

返回值

The trimmed string.

参见

  • 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() - 去除字符串首尾处的空白字符(或者其他字符)
添加备注

用户贡献的备注

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