0

我有一个在 apache 服务器上运行的 php 页面和一个在另一台机器上存储文件的 ftp 服务器。无法从外部访问 ftp 服务器。

我希望当用户单击我网页上的按钮时,php 服务器连接到 ftp 服务器,检索文件并显示另存为对话框,以便用户可以存储它。

任何帮助表示赞赏,拉杜

4

1 回答 1

1

给你..在download.php中写这个

$file = 'location/of/your/file.ext';
readfile($file);
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=".$file);
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: binary");

这应该工作:)

于 2014-05-18T13:44:27.220 回答