Tag: ltrim

  • trim left characters in php

    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…