In Php, what is the use of Ltrim( ) function
Answers
Answered by
0
Answer:
The ltrim() function removes whitespace or other predefined characters from the left side of a string. Related functions: rtrim() - Removes whitespace or other predefined characters from the right side of a string. trim() - Removes whitespace or other predefined characters from both sides of a string.
Answered by
0
Answer:
The ltrim() function removes whitespace or other predefined characters from the left side of a string. Related functions: rtrim() - Removes whitespace or other predefined characters from the right side of a string. trim() - Removes whitespace or other predefined characters from both sides of a string.
Return Value: Returns the modified string
Changelog: The charlist parameter was added in PHP 4.1
Similar questions