0

我已经编写了下载音频文件的代码。当我尝试通过 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);
?>

帮我解决这个问题

谢谢

4

1 回答 1

0

有人对此有想法吗?我使用下载管理器下载文件。当它达到 65% 时,它显示错误消息“数据传输已中断,服务器不支持恢复。只能从头开始下载”..

如何解决这个问题?

于 2012-05-23T05:46:19.650 回答