The
strtolower() string function in PHP will convert any capital letters found in your string to lowercase. It works the opposite of
strtoupper().

<?php
$myString = "My name is Adam.";
$myString = strtolower($myString);
echo $myString;
?>
my name is adam.