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 がインストールされ、有効になっていることを確認してください ;)