用php下载受限制的zip文件

时间:2012-08-02 18:21:17

标签: php .htaccess paypal

您好我允许用户使用paypal购买隐藏的虚拟mov.zip文件。我得到了事务部分并将详细信息存储在数据库等中...但是在用户返回到事务页面后,我想将它们链接到受限文件夹中的压缩文件(.htaccess拒绝所有)。如何授予他们访问此目录的权限,以便将文件下载几天。我无法暂时将文件移出目录,因为它的大小非常大(它是一个高清动作效果包)。

谢谢。

1 个答案:

答案 0 :(得分:2)

如果您的主机允许您更改脚本超时的PHP设置,则可以通过检查用户访问权限的PHP脚本来流式传输文件。

例如,请求:

<强>&GT; HTTP://domain.com/download.php FILE = be6bc64c94bbc062bcebfb40b4f93304

<?php
session_start();

if (!isset($_GET['file']) header('Location: index.php'); // invalid request

// 1. check user session
...
// 2. get file from hash (use a Db like MySQL
$file = ...;

// 3. check user privilege for the given file
...

// 4. proceed to download
if (file_exists($file)) {
    set_time_limit(0);
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
} else {
    // error 404
}