PHP string trim() function

PHP string trim() function is in-built function. It is used to strip whitespace from the beginning and end of a string or both side of a string.

Syntax:

ParameterDescriptionRequired/Optional
StringSpecify the string to check.Required
charlistSpecify the characters to remove. Following character:
  • "\0" - NULL
  • "\t" - tab
  • "\n" - new line
  • "\x0B" - vertical tab
  • "\r" - carriage return
  • " " - ordinary white space
Optional

Example 1

Output:

Your string is: Hello PHP!
By using trim() function :llo PHP

Example 2

Output:

Without trim() function: Hello Javatpoint! 
With trim() function: Hello Javatpoint!

Example 3

Output:

Without trim() function: Hello Javatpoint 
With trim() function:Hello Javatpoint

Next TopicPHP String




Latest Courses