php

2022.01.10 17:23

php 파일 다운로드, php file download

  • 관리자 2022.01.10 인기
  • 6,065
    0


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


#### (2)

if (file_exists($file_path)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header("Content-Type: application/force-download");
    header('Content-Disposition: attachment; filename="'.urlencode(basename($file_name)).'"');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file_path));
    ob_clean();
    flush();
    readfile($file_path);
    exit;
}

  • 공유링크 복사
  • 이전글DB 테이블명이 있는지 체크2020.09.18
  • 다음글로또 프로그램2021.12.29
  • 댓글목록

    등록된 댓글이 없습니다.