ÿØÿà JFIF ` ` ÿþ
Server : Apache System : Linux ruga7-004.fmcity.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : tkt_travelbus ( 1137) PHP Version : 7.0.0p1 Disable Function : mysql_pconnect Directory : /tkt_travelbus/www/admin/setting/ |
Upload File : |
<? /** * 이미지관리 > 파일 다운로드 * * 작성자 : * 작성일 : 20130731 */ include "../include/top_proc.html"; include "_common.php"; $upload = $cf['path']."/FileData/upfile/"; $table = "TB_UPFILE"; $sql = "select * from {$table} where seq='{$seq}' "; $rs = db_query($sql); $data = db_fetch_all($rs); $row = $data[0]; $filepath = $upload.$row['upfile']; // 실제 파일경로 $filename = iconv("UTF8","EUCKR",$row['upfile_org']); // 다운로드 파일명 // 파일 다운로드 if (file_exists($filepath)) { header("content-type: application/octet-stream"); header("content-disposition: attachment; filename=\"$filename\""); header("content-transfer-encoding: binary"); header("content-length: ".(string)(filesize("$filepath"))); header("cache-control: cache, must-revalidate"); // 파일열기를 위한 캐시 컨트롤! header("pragma: no-cache"); header("expires: 0"); if (is_file($filepath)) { $fp = fopen($filepath,'rb'); if (!fpassthru($fp)) { fclose($fp); } } else { echo "<script type='text/javascript'> alert('해당 파일이나 경로가 존재하지 않습니다.'); history.go(-1); </script> "; exit; } } else { echo "<script type='text/javascript'> alert('해당 파일을 찾을 수 없습니다.'); history.go(-1); </script> "; exit; } ?>