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