Доброй ночи, есть функция скачки файла.
Файл в кодировке ANSI (DLL)
function downloadFile($file, $str)
{
error_reporting(0);
header("Pragma: public");
header("Content-Type: text/html; charset=windows-1252");
iconv("utf-8", "windows-1252");
header("Content-Disposition: attachment; charset=windows-1252; filename=".$file);
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . strlen($str));
};
тут я получаю файл
register_shutdown_function(downloadFile("license.dll"));
И он качается в кодировке UTF-8