How to make cyrillic chars upper case?

php

Solution

Use `mb_strtoupper` with correct encoding (without it it won't work):

echo mb_strtoupper("русские", "utf-8");
РУССКИЕ

Problem

So how do I get cyrillic chars to upper case? ``` echo strtoupper("русские"); ``` this doesn't work.

Original source