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:

  • " " (Unicode U+0020), звичайний пропуск.
  • "\t" (Unicode U+0009), табуляція.
  • "\n" (Unicode U+000A), новий рядок.
  • "\r" (Unicode U+000D), повернення каретки.
  • "\0" (Unicode U+0000), NUL-байт.
  • "\v" (Unicode U+000B), вертикальна табуляція.
  • "\f" (Unicode U+000C), нова сторінка (form feed).
  • "\u00A0" (Unicode U+00A0), нерозривний пропуск.
  • "\u1680" (Unicode U+1680), огамський пропуск.
  • "\u2000" (Unicode U+2000), EN QUAD (пропуск).
  • "\u2001" (Unicode U+2001), EM QUAD (пропуск).
  • "\u2002" (Unicode U+2002), пропуск розміром 1 en.
  • "\u2003" (Unicode U+2003), пропуск розміром 1 em.
  • "\u2004" (Unicode U+2004), пропуск розміром 1/3 em.
  • "\u2005" (Unicode U+2005), пропуск розміром 1/4 em.
  • "\u2006" (Unicode U+2006), пропуск розміром 1/6 em.
  • "\u2007" (Unicode U+2007), фігурний пропуск.
  • "\u2008" (Unicode U+2008), пунктуаційний пропуск.
  • "\u2009" (Unicode U+2009), вузький пропуск.
  • "\u200A" (Unicode U+200A), дуже вузький пропуск .
  • "\u2028" (Unicode U+2028), роздільник-лінія.
  • "\u2029" (Unicode U+2029), роздільник-параграф.
  • "\u202F" (Unicode U+202F), вузький безперезвний пропуск.
  • "\u205F" (Unicode U+205F), середній математичний пропуск.
  • "\u3000" (Unicode U+3000), ідеографічний пропуск.
  • "\u0085" (Unicode U+0085), наступна лінія (NEL).
  • "\u180E" (Unicode U+180E), монгольський роздільник голосних.

Параметри

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() - Strip whitespace (or other characters) from the beginning of a string
add a note

User Contributed Notes

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