Home

Published

- 1 min read

php uppercase

img of php uppercase

The solution for this is noted below

php uppercase

Solution

   //string to all uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
//php string to uppercase
$string = strtoupper($string);
// = "STRING WITH MIXED USE OF UPPERCASE AND LOWERCASE"

Try other methods by searching on the site. That is if this doesn’t work