Mega Code Archive

 
Categories / Php / Strings
 

String strtolower ( string str ) returns that string entirely in lowercase characters

<?     $string = "I like to program in PHP";     $a = strtolower($string); ?>