메뉴 건너뛰기

프로그램언어

조회 수 20551 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

<?
$filepath = "./upload_interview/".$filename;
$filepath = addslashes($filepath);

header("Content-Type: application/octet-stream");
Header("Content-Disposition: attachment;; filename=".$filename);
header("Content-Transfer-Encoding: binary");
Header("Content-Length: ".(string)(filesize($filepath)));
Header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
$fp = fopen($filepath,'r+b') ;
if (!fpassthru($fp)) {
fclose($fp);
}
?>


하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved