PHP strtolower() Function

Syntax : strtolower($string)

 strtolower() function returns the string in lowercase letters.

Example 1 :

 

 <?Php

$str = "Welcome to My World!";  

echo strtolower($str); 

//output : welcome to my world!  

?>