Create a file with another languajes characters in php
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 have this:
<?php
$nombre =
"Дискография";
$fp = fopen("C:/$nombre", 'w+');
fclose($fp);
?>
No comments:
Post a Comment