I was trying to achieve stripping off some beginning part from a string using php ltrim function. It works fine until it get a i character after colon : . if it find i after
The second argument to ltrim is a list of characters to remove from the left side of the string.
If you did
You would get an empty string as the return value.
Try this instead: