tags:

views:

17

answers:

2

When I create file on Windows hosting, it gets name like джулия.jpg

It has to be a cyrillic name.

fopen() is used for creation.

What can I do with this?

+2  A: 

It's an encoding issue. Setting PHP to use UTF-8 encoding will probably suffice: http://php.net/manual/en/function.utf8-encode.php

UTF-8 can represent every character in the Unicode character set, plus it has the special property of being backwards-compatible with ASCII.

nkr1pt
+1  A: 
OIS