convert all letter to capital php code example
Example 1: php change sting to caps
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
Example 2: php capitalize first letter
ucfirst("hello world!");
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);
echo $uppercase;
ucfirst("hello world!");