i'm trying to create a file with name "Дискография
" but in the folder appears with the name ДиÑкографиÑ
.
The php file is in UTF-8. I'm working on windows. My file system is NTFS.
i have this:
<?php
$nombre = "Дискография";
$fp = fopen("C:/$nombre", 'w+');
fclose($fp);
?>