When I name a php file with utf8 characters, for example 'ççáá.php' the local server does not open the file.
I really need utf8 names to name these files, but you can do some sort of conversion . That is to get a utf8 name , convert it to a file name that the server recognizes, and save the file with the converted name. After that get the converted name and turns it into utf8 to use in the code. In other words, the process must be reversible .
What is the function or algorithm to accomplish this task?
Obs: I tried to use utf8_encode () / utf8_decode () but both generate filenames that the local server also does not recognize.