COMING SOON 🚀

s

PHP에서 파일다운로드기능 구현하기

· 2년 전 · 2485

대체로 PHP에서 파일을 다운로드하는 기능을 구현하기 위해 아래의 코드처럼 readfile()함수를 사용합니다.

[code]

$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
exit;
}

[/code]

그런데 readfile()함수는 파일크기만큼의 RAM영역을 차지하고 있으며 만일 메모리크기가 모자란다고 해도 오류를 발생시키지 않는 약점이 있습니다.

때문에 파일다운로드가 자주 발생하는 웹에서는 readfile()보다는 일정한 크기만큼씩 파일내용을 출력시키는 안전한 다운로드방식을 사용합니다. 다음의 코드가 바로 이런 점을 고려한 코드입니다.

[code]
64kb 씩 파일내용을 읽어 출력시키는 함수

public function download($path, $buf=64)
{
    $fullpath = $path;
    $name = pathinfo($fullpath)['basename'];

    if(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE")) // Browser is Internet Explorer
    {
        $filename = urlencode($name);
        $filename = preg_replace('/\./', '%2e', $filename, substr_count($filename, '.') - 1);
        $filename = basename(str_replace("+", "%20", $filename));
    }
    else $filename = $name;


    if (!is_file($fullpath) or connection_status()!=0) return(false);

    while(ob_get_level()) @ob_end_clean();

    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Pragma: public");
    header("Expires: ".gmdate("D, d M Y H:i:s", mktime(date("H")+2, date("i"), date("s"), date("m"), date("d"), date("Y")))." GMT");
    header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
    header("Content-Type: application/octet-stream");
    header("Content-Length: ".(string)(filesize($fullpath)));
    header("Content-Disposition: inline; filename=\"$filename\""); // Important the quotes \"\" for Firefox
    header("Content-Transfer-Encoding: binary\n");

    if($this->getUseSession() === true) session_write_close();

    if ($file = fopen($fullpath, 'rb'))
    {
        while(!feof($file) and (connection_status()==0))
        {
            set_time_limit(0); // Need if use max_execution_time set with php.ini.
            print(fread($file, 1024*intval($buf)));
            @ob_flush();
            @flush();
        }
        fclose($file);
    }
    return((connection_status()==0) and !connection_aborted());
}

[/code]

 

대용량 파일들을 다운로드 하는데서 위와 같은 코드가 안정적이지만 다운로드 하는 시간이 좀 걸리는 약점도 있습니다. 그것은 한번에 64KB씩(또는 사용자의 지정에 따르는 크기) 쪼각화해서 전송하기 떄문입니다.

도움이 되길 바랍니다.

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 2년 전 조회 990
JavaScript 2년 전 조회 1,129
JavaScript 2년 전 조회 902
JavaScript 2년 전 조회 941
PHP 2년 전 조회 1,054
기타 2년 전 조회 1,095
JavaScript 2년 전 조회 898
JavaScript 2년 전 조회 922
JavaScript 2년 전 조회 934
JavaScript 2년 전 조회 1,186
JavaScript 2년 전 조회 954
기타 2년 전 조회 956
PHP 2년 전 조회 1,033
JavaScript 2년 전 조회 916
PHP 2년 전 조회 2,486
PHP 2년 전 조회 808
기타 2년 전 조회 1,035
MySQL 2년 전 조회 1,773
JavaScript 2년 전 조회 1,392
PHP 2년 전 조회 2,328
MySQL 2년 전 조회 6,945
node.js 2년 전 조회 1,402
node.js 2년 전 조회 1,075
PHP 2년 전 조회 1,291
PHP 2년 전 조회 1,290
PHP 2년 전 조회 829
PHP 2년 전 조회 1,125
PHP 2년 전 조회 1,081
기타 2년 전 조회 1,377
2년 전 조회 885