PHP 8.4.0 RC4 available for testing

mb_trim

(PHP 8 >= 8.4.0)

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

Açıklama

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 32 (0x20)), sıradan boşluk.
  • "\t" (ASCII 9 (0x09)), sekme.
  • "\n" (ASCII 10 (0x0A)), satır sonu.
  • "\r" (ASCII 13 (0x0D)), satır başı.
  • "\0" (ASCII 0 (0x00)), boş bayt
  • "\v" (ASCII 11 (0x0B)), düşey sekme.

Bağımsız Değişkenler

string
The string that will be trimmed.
characters
Seçimlik olarak, karakterler bağımsız değişkeni kullanılarak budanacak karakterler belirlenebilir. Basitçe budamak istenen tüm karakterler belirtilir. Karakter artırım aralığını .. kullanarak belirtmek mümkündür.
encoding
The string encoding.

Dönen Değerler

The trimmed string.

Ayrıca Bakınız

  • 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() - Dizgenin başındaki ve sonundaki boşlukları (veya diğer karakterleri) budar
add a note

User Contributed Notes

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