Home » PHP trim() function

PHP trim() function

by Online Tutorials Library

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:

Parameter Description Required/Optional
String Specify the string to check. Required
charlist Specify the characters to remove. Following character:

  • “” – 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 TutorAspire!   With trim() function: Hello TutorAspire!  

Example 3

Output:

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

Next TopicPHP String

You may also like