How to recursive left trim a string in PHP
PHP have functions to trim from the beginning (ltrim) of a string or from the end of a string, or both form beginning and end. When you call you get But how you can remove all these continuous characters from the beginning of a string? You can write a short function, because PHP hasn’t built-in …