3

客户为下载链接付费的数字商业产品。

我已将所有压缩文件(产品)放在网络文档根目录之外,买家通过与 paypal IPN 集成的 php 脚本下载它们,以确保下载者是付费买家。

有点像:http ://www.mysite.com/download.php?buyer_id=xxx

到目前为止,这一切都只解决一个问题。我通过上述 URL 下载的 zip 文件已损坏,无法使用 WinRAR 正确打开。但是,直接下载 zip 就可以了。

我的代码:

$path = WAREHOUSE_PATH.'/products/'.$identifier.'.zip';
$mm_type="application/octet-stream";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: " . $mm_type);
header("Content-Length: " .(string)(filesize($path)) );
header('Content-Disposition: attachment; filename="'.basename($path).'"');
header("Content-Transfer-Encoding: binary\n");

$fp = @fopen($path,"rb");
if ($fp) {
  while(!feof($fp)) {
    print(fread($fp, 1024*8));
    flush();
    if (connection_status()!=0) {
      @fclose($fp);
      die();
    }
  }
  @fclose($fp);
}

有什么问题?谢谢!

问题已解决:谢谢大家的提示。事实证明,下载的软件包包含一些不应该存在的额外空白。愚蠢的。

4

3 回答 3

3

我建议改变这个:

$fp = @fopen($path,"rb");
if ($fp) {
  while(!feof($fp)) {
    print(fread($fp, 1024*8));
    flush();
    if (connection_status()!=0) {
      @fclose($fp);
      die();
    }
  }
  @fclose($fp);
}

对此

readfile($path);

您可以在此处找到有关 readfile 的更多信息,但基本上它会完成您的循环所做的一切。

于 2009-01-27T11:00:15.653 回答
2

您的 Content-Transfer-Encoding 标头有一个额外的换行符 - 也许这会导致最后一个标头和正文之间有三个换行符?

于 2009-01-27T10:59:17.107 回答
2

你最好只使用readfile(). 除非您打开了 ignore_user_abort,否则如果用户取消,脚本将自动终止。

如果您仍然遇到问题,请在十六进制编辑器中加载文件并比较前几个字符和最后几个字符。

于 2009-01-27T11:01:25.637 回答