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