Change String case to lower : String Case « String « PHP






Change String case to lower


<?
$mixed_case_word = "Lower Case and Upper Case";
$lowercase = strtolower($mixed_case_word);
print($lowercase);
?>
           
       








Related examples in the same category

1.ucwords() function capitalizes the first letter of each word in a string
2.Initial-capping words is a very common task
3.Change String case to Upper
4.Trimming Strings: chop