wordpress onpage加载自动下载zip文件

时间:2016-05-14 19:48:40

标签: php wordpress customization downloading

我尝试为zip文件下载实现php脚本。当我在get_header()之前写下面的代码时它工作正常;在wordpress文件但页面未打开 当我在get_header()之后编写代码时;然后页面将打开,但它会在页面上打印zip文件。如何解决这个问题。

header('Content-Description: File Transfer');
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename='.basename($filename));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($filepath.$filename));
ob_clean();
flush();
readfile($filepath.$filename);
exit;

0 个答案:

没有答案