// ユーザーがデフォルトとして取得するファイル名
$download_file = 'your-download-name.zip';
// ダウンロード速度制限を設定します (=> 20,5 kb/s)
$download_rate = 20.5;
if(file_exists($local_file) && is_file($local_file)) {
// ヘッダーを送信します
header('Cache-control: private');
header('Content-Type: application/octet-stream');
header('Content-Length: '.filesize($local_file));
header('Content-Disposition: filename='.$download_file);
// コンテンツをフラッシュします
flush();
// ファイルストリームを開きます
$file = fopen($local_file, "r");
while (!feof($file)) {
// 現在のファイル部分をブラウザに送信します
print fread($file,round($download_rate * 1024));
// コンテンツをブラウザにフラッシュします
flush();
// 1 秒寝てください
sleep(1);
}
// ファイルストリームを閉じる
fclose($file);
}
else {
die('エラー: ファイル '.$local_file.' が存在しません!');
}