Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP strtolower — Make a string lowercase

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtolower($str);
echo $str; // Prints mary had a little lamb and she loved it so
?>
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #PHP #strtolower #Make #string #lowercase
ADD COMMENT
Topic
Name
3+7 =