谷歌浏览器中的php下载zip问题

时间:2018-09-25 06:21:21

标签: php download ziparchive

我正面临与下载zip相关的问题,我尝试在Mozila firefox中工作的每个脚本都有许多脚本,但没有一个适用于Google chrome。

header("HTTP/1.1 200 OK");
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: application/zip");
header('Content-Disposition: attachment; filename="test.zip"');
header("Content-Transfer-Encoding: binary");
header('Content-Length: ' . filesize(test.zip));

请帮助我解决这个问题。

0 个答案:

没有答案