How do I make the contents of a string lower case?
This is through using the strtolower function like this:
<?php
$mystring = "I DON'T LIKE SHOUTING!";
echo strtolower($mystring);
?>
Prints: "i don't like shouting!";
More strings PHP Questions
How do I join strings together?How do I calculate the metaphone of a string?
How can I remove spaces from around a string value?
How do I make the first letter of a string uppercase?
How do I replace a word in a string in PHP?