LAMP
PHP ZIP 파일 다운로드 시 올바르지 않습니다 에러시
영은파더♥
2017. 1. 26. 16:05
728x90
PHP ZIP 파일 다운로드 시 올바르지 않습니다 에러시
압축 파일을 다운로드 해서 열어볼때 올바르지 않습니다 에러가 나는 경우가 있군요~
readfile 하기전에 ob_clean 과 flush 를 해주니 잘 동작 하는군요~
header("Content-Type: application/octet-stream;");
header("Content-Disposition: attachment; filename=$filename");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".(string)filesize($DOWNLOAD_PATH));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
ob_clean();
flush();
readfile($DOWNLOAD_PATH);
728x90
반응형