I can't use mkdir to create folders with UTF-8 characters.
<?php
$dir_name = "Depósito";
mkdir($dir_name );
?>
But, when I browse this folder in Windows Explorer, the folder name looks like this:
Depósito
What should I do?
|
|
I can't use mkdir to create folders with UTF-8 characters.
But, when I browse this folder in Windows Explorer, the folder name looks like this:
What should I do? |
||
|
|
|
Just Caveats (all apply to the solutions below as well):
Worse SolutionsThe following are less attractive solutions, more complicated and with more caveats. On Windows, the PHP filesystem wrapper expects and returns ISO-8859-1 strings for file/directory names. This gives you two choices:
Caveats galore!
This nightmare is why you should probably just transliterate to create filenames. |
|||
|
|
|
The problem is that Windows uses utf-16 for filesystem strings, whereas Linux and others use different character sets, but often utf-8. You provided a utf-8 string, but this is interpreted as another 8-bit character set encoding in Windows, maybe Latin-1, and then the non-ascii character, which is encoded with 2 bytes in utf-8, is handled as if it was 2 characters in Windows. A normal solution is to keep your source code 100% in ascii, and to have strings somewhere else. However, PHP6 introduces Unicode functions etc., so you might want to have a look at those. |
||||||
|