mb_convert_case 대소문자변환과 인코딩을 동시에 하기 > 개발자팁

개발자팁

개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.

mb_convert_case 대소문자변환과 인코딩을 동시에 하기 정보

PHP mb_convert_case 대소문자변환과 인코딩을 동시에 하기

본문

 

mb_convert_case — 문자열에 케이스 폴딩를 수행

 

[설명]

 

string mb_convert_case ( string $str , int $mode [, string $encoding = mb_internal_encoding() ] )

모드에서 지정한 방식으로 변환 된 문자열에 케이스 폴딩을 수행합니다.

 

[인수]

 

str

문자열은 변환된다.

 

mode

변환의 모드. 그것은 MB_CASE_UPPER, MB_CASE_LOWER, 또는 MB_CASE_TITLE 중 하나가 될 수 있습니다.

 

encoding

encoding 인수는 문자 인코딩입니다. 생략하면, 내부 문자 인코딩값을 사용합니다.

 

[반환값]

 

문자열의 경우 접힌 버전 모드에서 지정한 방식으로 변환됩니다.

 

[유니코드]

 

By contrast to the standard case folding functions such as strtolower() and strtoupper(), case folding is performed on the basis of the Unicode character properties. Thus the behaviour of this function is not affected by locale settings and it can convert any characters that have 'alphabetic' property, such as A-umlaut (Ä).

 

For more information about the Unicode properties, please see » http://www.unicode.org/unicode/reports/tr21/.

 

예제 ¶

 

Example #1 mb_convert_case() example

 

<?php

$str = "mary had a Little lamb and she loved it so";

$str = mb_convert_case($str, MB_CASE_UPPER, "UTF-8");

echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO

$str = mb_convert_case($str, MB_CASE_TITLE, "UTF-8");

echo $str; // Prints Mary Had A Little Lamb And She Loved It So

?>

2016/11/10 - [IT/php] - php mb_strtoupper 대문자변환

2016/11/10 - [IT/php] - php mb_strtolower 소문자변환

2016/11/09 - [IT/php] - php strtolower 문자열 소문자 변환

2016/11/09 - [IT/php] - php strripos 문자열 마지막 위치 알아내기

 

추천
0

댓글 0개

전체 577
개발자팁 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT