如何让用户使用php从网上下载zip文件?

时间:2014-10-26 06:25:42

标签: php

我的/ var/www/projectlog/logs下的ubuntu机器上有一个日志文件夹,其中包含不同日志文件的zip版本。我想让用户从网页下载这些zip文件。

这可以用PHP做吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

header('Content-disposition: attachment; filename=Resumes.zip');
header('Content-type: application/zip');
readfile("/var/www/projectlog/logs/<NAME_OF_ZIP>");

或只是,

readfile("/var/www/projectlog/logs/<NAME_OF_ZIP>"); // as rest will be taken care automatically by browsers

您的PHP文件所有者应具有此路径的读取权限:/var/www/projectlog/logs/