HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

rtrim

Description

The rtrim of String for PHP strips whitespace (or other characters) from the end of a string.

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.

CharacterASCIIDescription
"\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"

2 · characters · list

<?

$string = "string\0\t\n\v\r \x00\x09\x0A\x0B\x0D\x20";
$characters = "\0\t\n\v\r ng";

$return = rtrim($string, $characters);

var_dump($string, $return);
string(18) "string    

     

 "
string(4) "stri"

3 · characters · range

<?

$string = "string\0\t\n\v\r \x00\x09\x0A\x0B\x0D\x20";
$characters = "\x00..\x20ng";

$return = rtrim($string, $characters);

var_dump($string, $return);
string(18) "string    

     

 "
string(4) "stri"