オーディオ ファイルをダウンロードするコードを作成しました。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);
?>
これを解決するのを手伝ってください
ありがとう