(PHP 8 >= 8.4.0)
mb_rtrim — Strip whitespace (or other characters) from the end of a string
Performs a multi-byte safe rtrim() operation,
and returns a string with whitespace (or other characters) stripped from the
end of string
.
Without the second parameter, rtrim() 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
characters
characters
. Необхідно просто записати туди
усі потрібні символи. За допомогою ..
можна задати діапазон
символів за зростанням.
encoding
Returns the modified string.