PHP lcfirst() Function
Syntax : lcfirst(string)
The lcfirst() function converts the first character of a string to lowercase.
Syntax : lcfirst(string)
The lcfirst() function converts the first character of a string to lowercase.
<?Php
$str = "WELCOME to my WORLD!";
echo lcfirst($str);
//output : welcome to my WORLD!
?>