InterviewSolution
Saved Bookmarks
| 1. |
What is TRIM function in PHP? |
|
Answer» TRIM() removes all blank spaces or whitespace or other (specified) CHARACTERS from both sides of a string. $var = “ Best INTERVIEW Questions ”
$var = “Best Interview Questions”; |
|