文件下载正常 - 除了较大的文件下载 - 大文件下载太快并且在打开时损坏 - 我收到错误消息(对于 zip 文件):无法打开文件:它似乎不是一个有效的存档。文件上传正常,在文件夹中
这是我用来强制下载标头的 php 代码
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
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));
ob_clean();
flush();
readfile($file);
exit;