我想下載一個.zip文件,但是當我去下載它時,它迫使我下載.php文件。我使用這個遍佈互聯網的簡單代碼,所以我不知道爲什麼我無法下載.zip文件。下載.zip文件問題(下載.php文件)
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Content-type: application/zip");
header('Content-length: '.filesize($fullpath));
header("Content-disposition: attachment; filename=".basename($fullpath));
readfile($fullpath);
的zip文件,瀏覽器是你測試它? – Sjoerd
你確定你不只是下載一個名爲.php的壓縮文件嗎? – JohnP
你不需要'filesize($ fullfile)'嗎? – pimvdb