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 문자열 마지막 위치 알아내기
'IT > php' 카테고리의 다른 글
php mb_ereg — 멀티 바이트 지원과의 정규식 일치 (0) | 2016.11.13 |
---|---|
php mb_split 정규식을 사용하여 멀티 바이트 문자열 분리 (0) | 2016.11.13 |
php mb_strtoupper 대문자변환 (0) | 2016.11.10 |
php mb_strtolower 소문자변환 (0) | 2016.11.10 |
php strtolower 문자열 소문자 변환 (0) | 2016.11.09 |