strtolower ( string $string ) : string //Returns string with all alphabetic characters converted to lowercase. $string = 'HELLO WORLD'; echo strtolower($string); //Output: 'hello world'