有时候你会出于某种目的而要求把下载文件的速度放慢一些,例如你想实现文件下载进度条功能。限制下载速度最大的好处是节省带宽,避免瞬时流量过大而造成网络堵塞。本文将和你分享如何通过PHP代码来实现限制文件的下载速度。 首先来看看利用PHP限制文件下载速度的代码:
PHP;">
31.2 kb/s)
$download_rate=31.2;
if(file_exists($local_file)&&is_file($local_file)){
header('Cache-control: private');// 发送 headers
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();// flush 内容输出到浏览器端
sleep(1);// 终端1秒后继续
}
fclose($file);// 关闭文件流
}else{
die('Error: 文件 '.$local_file.' 不存在!');
}
下面对以上代码做一些分析: