我使用此代码从服务器下载/读取文件。
header("Expires: 0");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Content-type: application/file");
header('Content-length: '.filesize($file_to_download));
header('Content-disposition: attachment; filename='.basename($file_to_download));
readfile($file_to_download);
exit;
它可以正常下载文件,但是当文件很大时,它会显示错误“找不到文件,加载问题文件”。请告诉我在此代码中我可以更改大文件下载。
答案 0 :(得分:0)
试试这样:
$chunkSize = 1024 * 1024;
$fd = fopen($file_to_download, 'rb');
while (!feof($fd)) {
$buffer = fread($fd, $chunkSize);
echo $buffer;
ob_flush();
flush();
}
fclose($fd);