PHP代理下载文件



我认为这很容易。

我有一个简单的网站,其中有一个保留区域和一些文件可以从中下载。

我禁用.htaccess禁用直接文件,然后通过此简单proxy.php文件管理文件下载:

// ....
if ($filename === null || !file_exists($proxiedDirectory.$filename)) {
    http_response_code(404);
    exit;
}
if (!$site->is_logged_in()) { 
    http_response_code(403);
    exit;
}
$fp = fopen($proxiedDirectory.$filename, 'rb');
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$filename.'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
fpassthru($fp);
exit;

此代码运行完美,但不幸的是我有一个1.2GB的文件,用户可以下载,此脚本太慢,不允许完整的文件下载。

任何帮助将不胜感激,

预先感谢!

m。

您可以使用header()set_time_limit()fgets()ob_flush()flush()的组合。这是我的示例,最好在OS 64bit上使用PHP 64bit,因为filesize()在此体系结构中没有限制。

    // Set force download headers
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="' . $file . '"');
    header('Content-Transfer-Encoding: binary');
    header('Connection: Keep-Alive');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . sprintf("%u", filesize($downloads_folder . $file)));
    // Open and output file contents
    set_time_limit(0);
    $fh = fopen($downloads_folder . $file, "rb");
    while (!feof($fh)) {
      echo fgets($fh);
      ob_flush();
      flush();
    }
    fclose($fh);
    exit;

希望这会有所帮助。

使用块的下载,像这样的smth:

$chunkSize = 1024 * 1024;
while (!feof($fp))
{
    $buffer = fread($fp, $chunkSize);
    echo $buffer;
    ob_flush();
    flush();
}

使用nginx作为代理可能更合适。原因很简单:当您通过PHP下载时,在PHP-FPM中请求时会有超时,因此该文件更有可能无法完成。

location /proxy.lua {
    proxy_pass http://proxy.com/link/;
} 

如果您需要检查用户是否登录,则可以使用lua nginx(openresty)

但是有一种简单的方法可以检查:1.代理。php将请求重定向到nginx位置proxy.lua,带有两个参数:ts和code。

ts is timestamp of server
code is md5sum(ts+"complexstring")
header("Location: /proxy.lua?ts=122&code=xxx&filename=xxxx", 302);
exit(0);

在lua中:

parse the parameter ts and code, validate the code and ts value
proxy the file

fpassthru($fp)

之前使用ob_end_clean()

,例如

ob_end_clean();
fpassthru($fp);

这可能适用于大文件

相关内容

  • 没有找到相关文章

最新更新