페이지 접속시 파일 다운로드
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);
}
'웹 > PHP' 카테고리의 다른 글
[pydio] 설치에러_Imposible write into the AJXP_DATA_PATH (0) | 2016.05.02 |
---|---|
Mysql 문자인코딩 확인 및 변경함수 (0) | 2013.05.07 |
페이지 자동이동 (0) | 2011.02.08 |
getimagesize() 배열 index값 (0) | 2010.12.24 |
PHP 변수에 HTML 태그 넣기 (0) | 2010.11.06 |