검색결과 리스트
다운로드에 해당되는 글 1건
- 2007.07.31 PHP 에서 파일 종류와 상관없이 다운로드창 뜨게하기. 40
[code]<?
$fileDir = "해당디렉토리";
$completeFilePath=$fileDir./.$fileName;
$length = filesize($completeFilePath);
$size = $length;
header("Content-Type: application/ms-x-download");
header("Content-Type: application/octet-stream");
header("Content-Length: $size");
header("Content-Disposition: attachment; filename=$fileName");
header("Content-Transfer-Encoding: binary");
$fh = fopen($completeFilePath, "r");
fpassthru($fh);
exit;
?>[/code]
ㅇㅋ 바로 이걸원했어!
PHP DATE() 함수 사용법 (821) | 2007.08.15 |
---|---|
MYSQL DATE_FORMAT 함수 사용법 (19) | 2007.08.15 |
테터툴즈 업로드 (21) | 2007.04.11 |
제로보드 utf-8 환경에서 깨짐없이 한글 자르기(cut_str 수정) (57) | 2007.03.16 |
제로보드 euc-kr 에서 utf-8 로 변경하기 (738) | 2007.03.09 |
RECENT COMMENT