我已经编写了下载音频文件的代码。当我尝试通过PHP下载超过50MB的文件时,它不会完全下载。它最多下载45MB。每次我尝试下载时,下载大小从36MB到45MB不等。
我已经更改了php.ini中的配置,如下所示:
memory_limit 512M
post_max_size 512M
upload_max_filesize 512M
在phpinfo()
中,我在更改配置后显示上述值。我仍有同样的问题。
我使用以下代码下载:
<?php
$file = "file to download";
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));
readfile($file);
?>
帮我解决此问题
由于
答案 0 :(得分:0)
有人对此有所了解吗?我使用下载管理器下载文件。当它达到65%时,它显示错误消息“数据传输已被中断,服务器不支持恢复。它只能从头开始下载”..
如何解决这个问题?