PHP strtoupper() Function
Syntax : strtoupper($string)
strtoupper() function returns the string in lowercase letters.
Syntax : strtoupper($string)
strtoupper() function returns the string in lowercase letters.
<?Php
$str = "Welcome to My World!";
echo strtoupper($str);
//output : WELCOME TO MY WORLD!
?>