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.
- $string: This parameter specifies the string from which the whitespace and predefined characters from left and right are to be removed
- $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 = " geeks for geeks "; // removes all leading and trailing whitespaces echo trim($str); ?> |
Output:
geeks for geeks
Reference: http://php.net/manual/en/function.trim.php
Recommended Posts:
- p5.js | trim() function
- Node.js | trim() function
- How to trim all strings in an array in PHP ?
- How to trim a file extension from string using JavaScript ?
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- How to get the function name inside a function in PHP ?
- D3.js | d3.hcl() Function
- p5.js | cos() function
- PHP | sin( ) Function
- PHP | Ds\Map first() Function
- p5.js | sq() function
- PHP | each() Function
- D3.js | d3.lab() Function
- p5.js | pow() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

