我的/ var/www/projectlog/logs
下的ubuntu机器上有一个日志文件夹,其中包含不同日志文件的zip版本。我想让用户从网页下载这些zip文件。
这可以用PHP做吗?
答案 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/