PHP lcfirst() Function

Syntax : lcfirst(string)

The lcfirst() function converts the first character of a string to lowercase.

Example 1 :

 

 <?Php

$str = "WELCOME to my WORLD!"; 

echo lcfirst($str); 

//output : welcome to my WORLD! 

?>