gpt4 book ai didi

PHP:如何知道用户当前是否正在下载文件?

转载 作者:搜寻专家 更新时间:2023-10-31 20:53:58 24 4
gpt4 key购买 nike

我正在开发一个类似 RapidShare 的快速网站,用户可以在其中下载文件。首先,我创建了一个快速测试设置标题并使用 readfile() 但后来我发现 in the comments section有一种限制下载速度的方法,很棒,这是代码:

$local_file = 'file.zip';
$download_file = 'name.zip';

// set the download rate limit (=> 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))
{
// 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);
}
fclose($file);}
else {
die('Error: The file '.$local_file.' does not exist!');
}

但是现在我的问题是,如何限制同时下载的数量呢?如何检查与某些用户的 IP 是否仍然存在连接?

谢谢。

最佳答案

用户是否有登录名?如果不只是使用 session ,甚至更好地跟踪他们的 IP 地址。

这是一个 session 示例:

$_SESSION['file_downloading']==true;
$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);
}
$_SESSION['file_downloading']=null;
fclose($file);}

然后最重要的是这段代码,

if(!empty($_SESSION['file_downloading'])) 

//执行重定向或降低他们的下载率或其他东西。

下一个选项是通过 ip 地址。

//http://wiki.jumba.com.au/wiki/PHP_Get_user_IP_Address
function VisitorIP()
{
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
$TheIp=$_SERVER['HTTP_X_FORWARDED_FOR'];
else $TheIp=$_SERVER['REMOTE_ADDR'];

return trim($TheIp);
}

获取访问者的 ip 地址,将其与日期时间戳一起存储在数据库中。然后在文件下载完成后简单地删除该 ip 地址。您在使用数据库系统吗?

关于PHP:如何知道用户当前是否正在下载文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4621814/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com