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!";
Comment on this Question and Answer >>>
ASK A QUESTION
More strings PHP Questions
What is the difference between join and implode in PHP?how to compare strings in PHP?
How do I reverse a string in PHP?
How can I repeat a string variable several times?
How do I print text to the screen?
