In the following example, I save the content I want in a txt file, until here it works perfectly, the problem that the txt file creates in asci format and saves the content with strange characters.
If you can help me, super grateful. Greetings.
$file=fopen("1.txt","w+");
fwrite($archivo,"guardar texto? ë ì ?");
fclose($file);