-
PHP 파일 다운로드 함수프로그램/php 2014. 5. 12. 14:41
PHP 파일 다운로드 함수 입니다
PHP 파일다운로드 함수 입니다.
A link 로 파일을 직접 링크 걸 수도 있겠지만
보안상 좋지 않죠?
$downFile = $_REQUEST["file"]; $local_file = 'event_files/'.$downFile; $download_file = $downFile; $download_rate = 20.5; if(file_exists($local_file) && is_file($local_file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename($local_file)); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($local_file)); ob_clean(); flush(); readfile($local_file); }else { die("파일이 존재하지 않습니다"); }
'프로그램 > php' 카테고리의 다른 글
PHP7 NAN INF 출력 오류가 나는 이유 IEEE 754 변경 (0) 2017.03.01 PHP>익스플로러 호환성 강제로 낮추기 <HTTP_USER_AGENT,EmulateIE> (0) 2014.01.02 [php]eval 함수 이용하여 ajax 간편하게 사용하기 (0) 2013.11.06 [php]POST,GET넘어 온 값 간편하게 처리하기. (0) 2013.10.18 PHP UTF-8 문자열 길이 비교하여 자르는 함수 <strcut_utf8> (0) 2013.10.01