小文字の文字列を大文字にする

$string = "abcde";
$answer = strtoupper ($string);
echo($answer);
//ABCDE
0
カテゴリー: php