Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/287.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/joomla/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
PHP:如何知道用户当前是否正在下载文件?_Php_Download_Readfile - Fatal编程技术网

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

PHP:如何知道用户当前是否正在下载文件?,php,download,readfile,Php,Download,Readfile,我正在开发一个类似QuickRapidShare的网站,用户可以在那里下载文件。首先,我创建了一个快速测试设置头并使用readfile(),但后来我发现有一种方法可以限制下载速度,这很好,下面是代码: $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

我正在开发一个类似QuickRapidShare的网站,用户可以在那里下载文件。首先,我创建了一个快速测试设置头并使用
readfile()
,但后来我发现有一种方法可以限制下载速度,这很好,下面是代码:

$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连接


谢谢。

用户有登录名吗?如果不只是使用会话,甚至更好地跟踪他们的ip地址

下面是一个会话示例:

$_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地址即可。您使用的是数据库系统吗?

请不要使用尖叫式的“购买帐户以加快下载速度,无需等待时间”广告。我求你了。我会试着带些更原创的东西来。
if(isset($\u SESSION['file\u download'])和&$\u SESSION['file\u downloading'])
→ <代码>如果(!空($\u会话['file\u downloading'])):)