Tuesday, October 7, 2025
HomeLanguagesPHP trim() Function

PHP trim() Function

The trim() function in PHP is an inbuilt function which removes whitespaces and also the predefined characters from both sides of a string that is left and right.

Related Functions:

Syntax:

trim($string, $charlist)

Parameters:The function accepts one mandatory parameter and one optional parameter as shown in the above syntax and described below.

  1. $string: This parameter specifies the string from which the whitespace and predefined characters from left and right are to be removed
  2. $charlist: This is an optional parameter which specifies the characters that are to be removed from the string. If this is not mentioned then all of the following characters will be removed:
    • “\0” – NULL
    • “\t” – tab
    • “\n” – new line
    • “\x0B” – vertical tab
    • “\r” – carriage return
    • ” ” – ordinary white space

Return Value: It returns the modified string by removing the whitespace and also the predefined characters from both sides of a string that is left and right.

Below programs illustrate the trim() function:

Program 1:




<?php
// PHP program to demonstrate the use of trim() 
// function when second parameter is present
  
// removes the predefined characters from 
// front and back 
$str = "Hello World!";
echo trim($str, "Hell!");
?>


Output:

o World

Program 2:




<?php
// PHP program to demonstrate the use of trim() 
// function when second parameter is absent
  
$str = "  neveropen for neveropen ";
  
// removes all leading and trailing whitespaces 
echo trim($str);
?>


Output:

neveropen for neveropen

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

RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS