So how do I get cyrillic chars to upper case?
echo strtoupper("русские");
this doesn't work.
Use mb_strtoupper
with correct encoding (without it it won't work):
echo mb_strtoupper("русские", "utf-8");
РУССКИЕ
You will have to use MultiByte functions:
mb_strtoupper
Make sure that MB is installed and enabled in your PHP ;)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With