125
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:
| 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