mb_convert_case

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

mb_convert_case���ַ������д�Сдת��

˵��

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

��һ�� string ���д�Сдת����ת��ģʽ�� mode ָ����

����

str

Ҫ��ת���� string��

mode

ת����ģʽ���������� MB_CASE_UPPER�� MB_CASE_LOWER �� MB_CASE_TITLE ������һ����

encoding

encoding ����Ϊ�ַ����롣���ʡ�ԣ���ʹ���ڲ��ַ����롣

����ֵ

�� mode ָ����ģʽת�� string ��Сд��İ汾��

Unicode

������ strtolower()��strtoupper() �ı�׼��Сдת��������ȣ� ��Сдת����ִ�и��� Unicode �ַ����ԵĻ����� ��˴˺�������Ϊ�������Ի�����locale�����õ�Ӱ�죬�ܹ�ת���������"��ĸ"���Ե��ַ�������Ԫ������A��?����

������� Unicode ���Ե���Ϣ����鿴 » http://www.unicode.org/unicode/reports/tr21/��

����

Example #1 mb_convert_case() ����

<?php
$str 
"mary had a Little lamb and she loved it so";
$str mb_convert_case($strMB_CASE_UPPER"UTF-8");
echo 
$str// ��� MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
$str mb_convert_case($strMB_CASE_TITLE"UTF-8");
echo 
$str// ��� Mary Had A Little Lamb And She Loved It So
?>

Example #2 ������ UTF-8 �ı���mb_convert_case() ����

<?php
$str 
"��?�֦ɦҦӦ� ����?�ЦǦ� �¦���?? �צǦ�?�ͦ� �æ�, �ĦѦ��ҦʦŦ�?�ƦŦ� �Ԧ�?�� �ͦئȦѦ�? �ʦԦ�??";
$str mb_convert_case($strMB_CASE_UPPER"UTF-8");
echo 
$str// ��� ��?���������� ����?������ ������?�� ������?���� ����, ��������������?������ ����?�� ����������? ������?��
$str mb_convert_case($strMB_CASE_TITLE"UTF-8");
echo 
$str// ��� ��?�֦ɦҦӦ� ����?�ЦǦ� ������?�� ���Ǧ�?�ͦ� ����, ���Ѧ��ҦʦŦ�?�ƦŦ� ����?�� ���ئȦѦ�? ���Ԧ�?��
?>

�μ�