Open In App

PHP rtrim() Function

The rtrim() function is a built-in function in PHP which removes whitespaces or other characters (if specified) from the right side of a string.

Syntax:



rtrim( $string, $charlist )

Parameters: The function rtrim() accepts two parameters as shown in the above syntax. Out of these two parameters, one is mandatory while the other one is optional. They are discussed in details below :

Return Value: Returns the modified string.



Examples:

Input : $string = "Geeks for Geeks    "
Output : Geeks for Geeks

Input : $string = "Geeks for !!! (( !!))", $charlist = "! ()"
Output : Geeks for 

Below programs will illustrate rtrim() function :

Program 1: This program shows the use of rtrim() function without any specified list of characters to be removed.




<?php
  
$string = "Geeks for    ";
echo rtrim($string)." Geeks";
  
?>

Output:

Geeks for Geeks

Program 2: This program shows the use of rtrim() function with a specified list of characters to be removed.




<?php
  
$string = "Geeks for !!! (( !!))";
  
// The characters '!', '(', ')', ' ' have been specified 
// to remove from the end of the string
echo rtrim($string, "! ()")." Geeks";
  
?>

Output:

Geeks for Geeks

Reference:
http://php.net/manual/en/function.rtrim.php

Article Tags :