PHP 8.4.0 RC3 available for testing

mb_ltrim

(PHP 8 >= 8.4.0)

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

Descrição

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 32 (0x20)), um espaço normal.
  • "\t" (ASCII 9 (0x09)), uma tabulação.
  • "\n" (ASCII 10 (0x0A)), uma nova linha (alimentação de linha).
  • "\r" (ASCII 13 (0x0D)), um retorno de carro.
  • "\0" (ASCII 0 (0x00)), o byte NUL.
  • "\v" (ASCII 11 (0x0B)), uma tabulação vertical.

Parâmetros

string
The input string.
characters
Opcionalmente, os caracteres removidos também podem ser especificados usando o parâmetro characters. Simplesmente liste todos os caracteres que precisam ser removidos. Com .. é possível especificar um intervalo incremental de caracteres.
encoding
The string encoding.

Valor Retornado

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

Veja Também

  • 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() - Retira espaços em branco (ou outros caracteres) do início de uma string
adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top