php make string uppercase code example
Example 1: php string to uppwe
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
Example 2: php uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
$string = strtoupper($string);
Example 3: strtoupper in php
<?php
echo strtoupper("Hello samy! how are u ?");
?>
Example 4: strtoupper php
string strtoupper ( $string )
Example 5: php string to uppercase
<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str;