How can I use filesystem functions in PHP, using UTF-8 strings?
- by Acacio Nerull
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?