我在Google上发现了一些PHP脚本来限制文件的下载速度,但文件下载速度为10 Mbps,或者如果按照我设置的速度下载速度为80 kbps,则在5 mb后,它会停止下载。
有人可以告诉我哪里可以找到一个好的PHP下载速度限制脚本吗?
非常感谢
---编辑---
以下是代码:
<?php
set_time_limit(0);
// change this value below
$cs_conn = mysql_connect('localhost', 'root', '');
mysql_select_db('shareit', $cs_conn);
// local file that should be send to the client
$local_file = $_GET['file'];
// filename that the user gets as default
$download_file = $_GET['file'];
// set the download rate limit (=> 20,5 kb/s)
$download_rate = 85;
if(file_exists($local_file) && is_file($local_file)) {
// send headers
header('Cache-control: private');
header('Content-Type: application/octet-stream');
header('Content-Length: '.filesize($local_file));
header('Content-Disposition: filename='.$download_file);
// flush content
flush();
// open file stream
$file = fopen($local_file, "r");
while(!feof($file)) {
// send the current file part to the browser
print fread($file, round($download_rate * 1024));
// flush the content to the browser
flush();
// sleep one second
sleep(1);
}
// close file stream
fclose($file);}
else {
die('Error: The file '.$local_file.' does not exist!');
}
if ($dl) {
} else {
header('HTTP/1.0 503 Service Unavailable');
die('Abort, you reached your download limit for this file.');
}
?>
答案 0 :(得分:17)
5MB后下载停止的原因是因为以80KB / s的速度下载5MB需要60秒以上。大多数“限速器”脚本使用sleep()
在发送块,恢复,发送另一个块并再次暂停后暂停一段时间。但是如果脚本运行了一分钟或更长时间,PHP将自动终止脚本。当发生这种情况时,您的下载就会停止。
您可以使用set_time_limit()
来阻止脚本被终止,但某些Web主机不允许您这样做。在那种情况下,你运气不好。
答案 1 :(得分:10)
第二个是太多时间,它会让客户认为服务器没有响应并过早地结束下载。
将sleep(1)
更改为usleep(200)
:
set_time_limit(0);
$file = array();
$file['name'] = 'file.mp4';
$file['size'] = filesize($file['name']);
header('Content-Type: application/octet-stream');
header('Content-Description: file transfer');
header('Content-Disposition: attachment; filename="' . $file['name'] . '"');
header('Content-Length: '. $file['size']);
$open = fopen($file['name'], 'rb');
while( !feof($open) ){
echo fread($open, 256);
usleep(200);
}
fclose($open);
答案 2 :(得分:1)
下载程序类很好,但如果同时有两个下载,则会出现一个问题,您将失去max_execution_time
值。
一些例子:
下载第一个文件(大小= 1mb;下载时间100秒)
一秒后下载第二个文件(大小= 100 mb;下载时间= 10000秒)
首先将集max_execution_time
下载到0
第二次记住_oldMaxExecTime
为0
首先下载结束并将max_execution_time
返回旧值
第二次下载结束并将max_execution time
返回0
答案 3 :(得分:0)
我尝试过可以帮助您处理限速下载的自定义课程,您可以尝试以下操作吗?
class Downloader {
private $file_path;
private $downloadRate;
private $file_pointer;
private $error_message;
private $_tickRate = 4; // Ticks per second.
private $_oldMaxExecTime; // saving the old value.
function __construct($file_to_download = null) {
$this->_tickRate = 4;
$this->downloadRate = 1024; // in Kb/s (default: 1Mb/s)
$this->file_pointer = 0; // position of current download.
$this->setFile($file_to_download);
}
public function setFile($file) {
if (file_exists($file) && is_file($file))
$this->file_path = $file;
else
throw new Exception("Error finding file ({$this->file_path}).");
}
public function setRate($kbRate) {
$this->downloadRate = $kbRate;
}
private function sendHeaders() {
if (!headers_sent($filename, $linenum)) {
header("Content-Type: application/octet-stream");
header("Content-Description: file transfer");
header('Content-Disposition: attachment; filename="' . $this->file_path . '"');
header('Content-Length: '. $this->file_path);
} else {
throw new Exception("Headers have already been sent. File: {$filename} Line: {$linenum}");
}
}
public function download() {
if (!$this->file_path) {
throw new Exception("Error finding file ({$this->file_path}).");
}
flush();
$this->_oldMaxExecTime = ini_get('max_execution_time');
ini_set('max_execution_time', 0);
$file = fopen($this->file_path, "r");
while(!feof($file)) {
print fread($file, ((($this->downloadRate*1024)*1024)/$this->_tickRate);
flush();
usleep((1000/$this->_tickRate));
}
fclose($file);
ini_set('max_execution_time', $this->_oldMaxExecTime);
return true; // file downloaded.
}
}
我已经将这个文件作为gist托管了github。 - https://gist.github.com/3687527
答案 4 :(得分:0)
试试这个: http://labs.easyblog.it/download-limiter-php/
使用pv unix命令最大限度地提高带宽精度
答案 5 :(得分:0)
首先,max_execution_time
是脚本的执行时间。睡觉不是它的一部分。
关于速度限制,您可以使用类似令牌桶的东西。我已将所有内容放入一个方便的库中:bandwidth-throttle/bandwidth-throttle
use bandwidthThrottle\BandwidthThrottle;
$in = fopen(__DIR__ . "/resources/video.mpg", "r");
$out = fopen("php://output", "w");
$throttle = new BandwidthThrottle();
$throttle->setRate(100, BandwidthThrottle::KIBIBYTES); // Set limit to 100KiB/s
$throttle->throttle($out);
stream_copy_to_stream($in, $out);
答案 6 :(得分:0)