Отправка правильного размера файла с помощью скрипта загрузки PHP
Я создал скрипт загрузки файлов в PHP, он работает, но веб-браузеры сообщают файл как «Неизвестная длина». Мой код выглядит следующим образом: function downloadFile($file){ // Set up the download system… header('Content-Description: File Transfer'); header('Content-Type: '.mime_content_type($file)); header('Content-Disposition: attachment; filename="'.basename($file).'"'); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: '.filesize($file)); // Flush the cache ob_clean(); flush(); […]