PHP 8.4.0 RC4 available for testing

mb_ltrim

(PHP 8 >= 8.4.0)

mb_ltrimStrip whitespace (or other characters) from the beginning of a string

说明

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

Performs a multi-byte safe ltrim() operation. Strip whitespace (or other characters) from the beginning of a string.

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

返回值

This function returns a string with whitespace stripped from the beginning of string.

参见

  • mb_trim() - Strip whitespace (or other characters) from the beginning and end of a string
  • mb_rtrim() - Strip whitespace (or other characters) from the end of a string
  • ltrim() - 删除字符串开头的空白字符(或其他字符)
添加备注

用户贡献的备注

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