strtoupper 用于 UTF-8 字符串的 PHP 函数

发布于 2024-11-06 18:43:50 字数 196 浏览 7 评论 0原文

我一直在阅读有关 strtoupper() PHP 函数的用户评论,但对于如何对非英语字符串进行转换似乎没有达成共识。我的意思是人们提供本地化的解决方案和东西,但是不应该有一种统一的方法将字符串转换为所有大写(或所有小写)字母吗?

所以我的问题是,如果我有一个 UTF-8 编码的字符串(在某些未知的语言环境中),如何将其转换为 PHP 中的所有大写/小写字母?

I've been reading user comments for the strtoupper() PHP function and there doesn't seem to a consensus on how to do the conversion for non-Enlgish strings. I mean people offer localized solutions and stuff, but shouldn't there be a uniform way to convert a string to all upper (or all lower) case letters?

So my question is, say, if I have a UTF-8 encoded string (in some unknown locale) how do I convert it to all upper/lower letters in PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终弃我 2024-11-13 18:43:50

您想使用mb_strtoupper

$str = "Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός";
$str = mb_strtoupper($str, "UTF-8");
echo $str; // Prints ΤΆΧΙΣΤΗ ΑΛΏΠΗΞ ΒΑΦΉΣ ΨΗΜΈΝΗ ΓΗ, ΔΡΑΣΚΕΛΊΖΕΙ ΥΠΈΡ ΝΩΘΡΟΎ ΚΥΝΌΣ

PHP.net 指出:

与标准情况相比
折叠函数,例如 strtolower()
和 strtoupper(),大小写折叠是
在Unicode的基础上执行
字符属性。因此
该函数的行为不是
受区域设置的影响,它可以
转换任何具有的字符
“字母”属性,例如
A-元音变音 (Ä)。

You want to use mb_strtoupper.

$str = "Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός";
$str = mb_strtoupper($str, "UTF-8");
echo $str; // Prints ΤΆΧΙΣΤΗ ΑΛΏΠΗΞ ΒΑΦΉΣ ΨΗΜΈΝΗ ΓΗ, ΔΡΑΣΚΕΛΊΖΕΙ ΥΠΈΡ ΝΩΘΡΟΎ ΚΥΝΌΣ

PHP.net states:

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 (Ä).

第几種人 2024-11-13 18:43:50

您尝试过这个吗?我不是语言学家,但我不会假设所有语言都有小写/大写拆分。

Have you tried this? I'm no linguist, but I wouldn't assume that all languages have a lower / upper case split.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文