Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那么如何将西里尔字符转为大写?
echo strtoupper("русские");
这不起作用。
使用mb_strtoupper正确的编码(没有它将不起作用):
mb_strtoupper
echo mb_strtoupper("русские", "utf-8"); РУССКИЕ
您将不得不使用 MultiByte 函数:
确保在您的 PHP 中安装并启用 MB ;)