ZIPファイルを送信するスクリプトがあります。これは12MBの大きなファイルですが、まれに、ダウンロードが4MB、5MB、6.5MBで停止することがあります(同じではありません)...
<?php
$fullpath = 'foobar.zip';
header('Content-Description: File Transfer');
header('Content-Type: application/zip');
header('Content-Disposition: attachment; filename=' . $fullpath);
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: '. filesize($fullpath));
ob_clean();
flush();
readfile($fullpath);
exit();
?>
すべてのファイルを読み取る前に、readfile()を停止できるのはどのような条件ですか?他に何か問題がありますか?