I can not configure the correct encoding. Here is my code:
<?php header('Content-type: text/html; charset="utf-8"'); setlocale(LC_ALL, 'Russian'); $month = strftime("%B"); ?> <!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <?php echo $month; ?> </body> </html>') I use openserver. When I write setlocale(LC_ALL, 'Russian'); instead of the month, symbols of black rhombuses with questions are issued, any other language is issued normally. What's the matter? (I suspect the server, but don `t know what to change there.)