일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- mysql
- 소비전력
- KB증권
- Rocky
- 자바스크립트
- iptime
- 알뜰폰
- 라즈베리파이2
- 복현오거리
- 킹북이초월
- php
- 램가스초월
- jQuery
- 티스토리
- 알리익스프레스
- KB국민카드
- 아파치
- 보르비스초월
- 리눅스
- 스톤에이지
- proxmox
- centos
- 시놀로지
- PHP-FPM
- Apache
- SKT
- OpenWrt
- ConoHa
- 윈도우10
- 가상서버호스팅
- Today
- Total
맛집 여행 캠핑 일상 생활
PHP 한글파일(hwp) 다운로드시 브라우저에서 열리는 문제 본문
728x90
한글파일(hwp) 다운로드시 브라우저에서 열리는 문제
hwp 파일은 <a href="sample.hwp">다운로드</a> 로 클릭하면 웹화면에 그냥 뿌려진다.
이런 경우라면 아래 처럼 해주자.
▶ download.php
<?
$filepath = $_GET['filepath'];
if(!file_exists($filepath)) {
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=$filepath");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".(string)filesize($filepath));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
readfile($filepath);
}
?>
$filepath 는 $_GET 이나 $_POST 로 받아오면 된다.
728x90
반응형
'LAMP' 카테고리의 다른 글
PHP 날짜 YYYY-MM-DD 로 가져오는 방법 (0) | 2016.10.27 |
---|---|
PHP mysqldump 받아서 다운로드 하는 방법 (0) | 2016.10.21 |
PHP fread vs readfile vs fpassthru 속도 비교 (0) | 2016.09.07 |
크롬브라우저 Content-Disposition: inline bmp 이미지 문제 (0) | 2016.09.07 |
PHP 실행시간 체크 방법 (0) | 2016.09.05 |
Trackback : | Comments :