Converts a string to lower case.
strtolower() returns a new string where the characters of the input string are converted to lower case.
<?php
print strtolower("This Is An Example Line");
?>
this is an example line
strtolower() is used to convert a string to all lower case.