php 문자 대소문자 변환하기
1. 대문자 소문자로 변환
strtolower('변경하고자 하는 문자열')
사용 예제
1 2 3 4 5 | <?php $temp = "TEST" ; $temp = strtolower($temp) ; echo $temp; ?> | cs |
출력 값
test
2. 소문자 대문자로 변환
strtoupper('변경하고자 하는 문자열')
사용 예제
1 2 3 4 5 | <?php $temp = "test" ; $temp = strtoupper($temp); echo $temp; ?> | cs |
출력 값
TEST
3. 첫글자만 대문자로 변환
ucfirst('변경하고자 하는 문자열')
사용 예제
1 2 3 4 5 | <?php $temp = "test" ; $temp = ucfirst($temp); echo $temp; ?> | cs |
출력값
Test
4. 간 단어의 첫글자를 대문자로 변환
ucwords('변경하고자 하는 문자열')
사용 예제
1 2 3 4 5 | <?php $temp = "test test" ; $temp = ucwords($temp); echo $temp; ?> | cs |
출력값
Test Test
'공부하자 > PHP' 카테고리의 다른 글
[PHP] 세자리 콤마 넣기[화폐] (0) | 2019.01.03 |
---|---|
php 문자열 일부분만 제거하기 (0) | 2018.12.27 |
mysqli 테이블 값 삭제 (0) | 2018.12.26 |
[PHP] 특수문자 및 원하는 문자 제거하기 (0) | 2018.12.23 |
AH00558: apache2: Could not reliably determine the server's fully qualified domain name (0) | 2018.12.06 |