[PHP] 문자열의 대문자를 소문자로, 소문자를 대문자로 바꿔주는 함수 - strtolower, strtoupper 소문자를 대문자로 변환 : strtoupper 대문자를 소문자로 변환 : strtolower $str = "Hello World!" $test1 = strtoupper($str); $test2 = strtolower($str); echo test1; //HELLO WORLD! echo test2; //hello wordl! Helloworld!/PHP 2013. 6. 4. 15:11