-1

在 PHP 中,我知道如何读取文件。但是,我希望脚本能够返回要下载的文件的内容。

例如: http://example.com/myfiles.php?source=images.zip 我需要 myfiles.php 来返回 zip 文件的标题,然后是其内容。

4

1 回答 1

3

您需要更改 myfiles.php 脚本文件中的标题,以便强制下载:

header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=images.zip");
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: binary");
于 2012-11-14T16:42:28.740 回答