to make your letters in a string to lower case you can use the strtolower() php function

$string = "HIGH CAPS";
echo "strtolower($string)";

OUTPUT: high caps

this is a great way to make caps letter into smaller letters