百科狗-知识改变命运!
--

mb_convert_case() - mb函数(多字节字符串转化库)

是丫丫呀12个月前 (11-21)阅读数 18#技术干货
文章标签字符串

mb_convert_case()

mb_convert_case() - mb函数(多字节字符串转化库)

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

对字符串进行大小写转换

说明

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

对一个string进行大小写转换,转换模式由$mode指定。

参数

$str

要被转换的string。

$mode

转换的模式。它可以是MB_CASE_UPPERMB_CASE_LOWERMB_CASE_TITLE的其中一个。

$encoding

$encoding参数为字符编码。如果省略,则使用内部字符编码。

返回值

按$mode指定的模式转换$string大小写后的版本。

Unicode

和类似strtolower()、strtoupper()的标准大小写转换函数相比,大小写转换的执行根据 Unicode 字符属性的基础。因此此函数的行为不受语言环境(locale)设置的影响,能够转换任意具有“字母”属性的字符,例如元音变音A(Ä)。

更多关于 Unicode 属性的信息,请查看» http://www.unicode.org/unicode/reports/tr21/。

范例

mb_convert_case()例子

非拉丁 UTF-8 文本的mb_convert_case()例子

参见

  • mb_strtolower()使字符串小写
  • mb_strtoupper()使字符串大写
  • strtolower()将字符串转化为小写
  • strtoupper()将字符串转化为大写
  • ucfirst()将字符串的首字母转换为大写
  • ucwords()将字符串中每个单词的首字母转换为大写
as the previouly posted version of this function doesn't handle UTF-8 characters, I simply tried to replace ucfirst to mb_convert_case, but then any previous case foldings were lost while looping through delimiters. 
So I decided to do an mb_convert_case on the input string (it also deals with words is uppercase wich may also be problematic when doing case-sensitive search), and do the rest of checking after that.
As with mb_convert_case, words are capitalized, I also added lowercase convertion for the exceptions, but, for the above mentioned reason, I left ucfirst unchanged.
Now it works fine for utf-8 strings as well, except for string delimiters followed by an UTF-8 character ("Mcádám" is unchanged, while "mcdunno's" is converted to "McDunno's" and "ökrös-TÓTH éDUa" in also put in the correct form)
I use it for checking user input on names and addresses, so exceptions list contains some hungarian words too.

鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com

免责声明:我们致力于保护作者版权,注重分享,当前被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理!邮箱:344225443@qq.com)

图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!

内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)