PHP strtolower() Function
Syntax : strtolower($string)
strtolower() function returns the string in lowercase letters.
Syntax : strtolower($string)
strtolower() function returns the string in lowercase letters.
<?Php
$str = "Welcome to My World!";
echo strtolower($str);
//output : welcome to my world!
?>