[PHP] 문자열을 대문자로 출력(변환)하기

2022. 9. 6. 15:10Program/PHP

036_PHP 문자열을 대문자로 출력하기

[요약]

  • 문자열을 모두 대문자로 출력하는 함수 strtoupper()에 대해 알아보자.

문자열에 있는 모든 영문을 대문자로 변경하려면 strtoupper() 함수를 사용한다.


[strtoupper() 사용 방법]

strtoupper('문자열');

 

다음은 strtoupper()를 활용한 예제이다.

[예제: 37_strtoupper.php ]

<?php
    $str = "disney land";
    echo strtoupper($str);
?>

실행결과

 

 


 

 

 

초보자를 위한 PHP 200제
김태영 지음 | 정보문화사