rtrim
Description
Syntax
rtrim( string $string, string $characters = " \n\r\t\v\x00" ): string
Parameters
string
The input string.
characters
The list of all the characters that need to be stripped. With .. you can specify a range of characters.
Character | ASCII | Description |
---|---|---|
"\0" | ASCII 0 (0x00) | NUL-byte |
"\t" | ASCII 9 (0x09) | horizontal tab |
"\n" | ASCII 10 (0x0A) | new line (line feed) |
"\v" | ASCII 11 (0x0B) | vertical tab |
"\r" | ASCII 13 (0x0D) | carriage return |
" " | ASCII 32 (0x20) | ordinary space |
Return
Returns a string with whitespace stripped from the end of the string.
Examples
1 · string
<? $string = "string\0\t\n\v\r \x00\x09\x0A\x0B\x0D\x20"; $return = rtrim($string); var_dump($string, $return);
string(18) "string " string(6) "string"