PHP mb_convert_case mbstring 函
发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,定义和用法mb_convert_case - 对字符串进行大小写转换语法mb_convert_case( string $str , int $mode [, string $encoding = m
定义和用法
mb_convert_case - 对字符串进行大小写转换
语法
mb_convert_case( string $str , int $mode [, string $encoding = mb_internal_encoding() ] )
mb_convert_case() 对一个 string 进行大小写转换,转换模式由 mode 指定。
参数
参数 | 必需的 | 描述 |
---|---|---|
str | 是 | 要被转换的字符串 |
mode | 是 | 转换的模式。它可以是 MB_CASE_UPPER、 MB_CASE_LOWER 和 MB_CASE_TITLE 的其中一个。 |
encoding | 否 | encoding 参数为字符编码。如果省略,则使用内部字符编码。 |
返回值
按 mode 指定的模式转换 string 大小写后的版本。
和类似 strtolower()、strtoupper() 的标准大小写转换函数相比, 大小写转换的执行根据 Unicode 字符属性的基础。 因此此函数的行为不受语言环境(locale)设置的影响,能够转换任意具有"字母"属性的字符,例如元音变音A(Ä)。
示例
$str = "mary had a Little lamb and she loved it so";$str = mb_convert_case($str, MB_CASE_UPPER, "UTF-8");echo $str; // 输出 MARY HAD A LITTLE LAMB AND SHE LOVED IT SO$str = mb_convert_case($str, MB_CASE_TITLE, "UTF-8");echo $str; // 输出 Mary Had A Little Lamb And She Loved It So
相关页面
mb_strtolower() - 使字符串小写
mb_strtoupper() - 使字符串大写
strtolower() - 将字符串转化为小写
strtoupper() - 将字符串转化为大写
ucfirst() - 将字符串的首字母转换为大写
ucwords() - 将字符串中每个单词的首字母转换为大写