페이지 접속시 파일 다운로드

2013. 6. 24. 13:08웹/PHP

$filename="파일이름.확장자";    //파일의 이름

$file="./$filename";    //파일의 경로

$filesize=filesize($file);    //파일사이즈

header("Content-type: file/unknown");    //Content-type은 파일에 따라 달라짐

header("Content-Disposition: attachment;filename=$filename");

header("Content-Description: PHP4 Generated Data");


if(is_file("$file")){

$fp = fopen("$file", "r");

if(!fpassthru($fp))

fclose($fp);

}