HTML/CSS 등/PHP (1) 썸네일형 리스트형 대소문자 변경 소문자 변환 strtolower() $temp = "ASDF" ; $temp = strtolower($temp) ; 출력 : asdf 대문자 변환 strtoupper() $temp = "asdf" ; $temp = strtoupper($temp); 출력 : ASDF 첫글자만 대문자로 ucfirst() 입력 : "hello world" 출력 : "Hello world" 각 단어의 첫글자를 대문자로 ucwords(); 입력 : "hello world" 출력 : "Hello World" 이전 1 다음