Convert All Uppercase Characters in a String to Lowercase using PHP July 19, 2021 PHP 0 Comments 373 Views strtolower function <?php $text = 'Hello WORLD'; $result = strtolower($text); echo $result; // hello world
Leave a Comment
Cancel reply