1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <? $ori_filename = $_GET[filename]; // 원래 파일명(한글) // ex) 한글파일.pdf $down_filename= $_GET[filepath]; // 저장된 경로와 파일명(임의생성) // ex) /home/hosting_users/test/www/upload/201606201352149534.pdf if (file_exists($down_filename)) { header("Content-type: doesn/matter"); header("Content-length: ".filesize("$down_filename")); header('Content-Disposition: attachment; filename="'.iconv('UTF-8','CP949',$ori_filename). '"'); header("Content-Transfer-Encoding: binary"); Header("Cache-Control: cache,must-revalidate"); header("Pragma: cache"); header("Expires: 0"); if (is_file("$down_filename")) { $fp = fopen("$down_filename", "r"); if(!fpassthru($fp)) fclose($fp); } } | cs |
'개발' 카테고리의 다른 글
[SAP] netweaver 설치중 An error occurred while processing option SAP NetWeaver 7.0 including Enhanc... 오류발생시 (0) | 2016.07.21 |
---|---|
[jquery] 369 (0) | 2016.07.01 |
[jquery] bx슬라이더 옵션 (0) | 2016.06.20 |
[css] reset css (리셋) (0) | 2016.06.20 |
[javascript] 드래그 방지, 오른쪽 마우스 클릭 방지 (0) | 2016.06.03 |