$original_string = 'Hello, World!';
$touppercase_string = strtoupper($original_string);
echo $touppercase_string; // 출력: 'HELLO, WORLD!'
strtoupper(string $string): string
$user_input = 'admin'; // 사용자가 입력한 값
$correct_username = 'ADMIN'; // 데이터베이스에 저장된 값

// 대소문자 구분 없이 비교
if (strtoupper($user_input) === strtoupper($correct_username)) {
    echo '로그인 성공!';
} else {
    echo '로그인 실패!';
} // 출력: '로그인 성공!'
$textTurkish = "ıstanbul";
echo strtoupper($textTurkish); // 출력: 'ıSTANBUL' (올바른 변환이 아님)
echo mb_strtoupper($textTurkish); // 출력: 'ISTANBUL' (올바른 변환)
$text = '환영합니다. Hello123!';
echo strtoupper($text); // 출력: '환영합니다. HELLO123!'
$text = 'hello';
strtoupper($text);
echo $text; // 출력: 'hello' (변경되지 않음)

$text = strtoupper($text);
echo $text; // 출력: 'HELLO'