>백엔드 개발 >PHP 튜토리얼 >PHP 헤더를 사용하여 파일 다운로드를 안정적으로 강제하는 방법은 무엇입니까?

PHP 헤더를 사용하여 파일 다운로드를 안정적으로 강제하는 방법은 무엇입니까?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-12-05 12:38:10683검색

How to reliably force file downloads using PHP headers?

PHP에서 Header()를 사용하여 파일 강제 다운로드

사용자가 서버에서 파일을 다운로드할 수 있도록 설정하려는 경우 아래와 같은 일반적인 솔루션이 작동하지 않을 수 있습니다.

header('Content-Description: File Transfer');
header('Content-Type: image/png');
header('Content-Disposition: attachment; filename="Image.png"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . $size);
readfile("Image.png");

콘솔에 올바른 헤더가 표시되어도 저장 대화 상자가 나타나지 않을 수 있습니다.

중요한 오류는 Content-Type 헤더에 있습니다. 파일 다운로드의 경우 이미지/png가 아니라 다음과 같습니다.

header('Content-Type: application/octet-stream');

파일 다운로드를 위한 신뢰할 수 있는 헤더 세트는 다음과 같습니다.

$quoted = sprintf('"%s"', addcslashes(basename($file), '"\'));
$size   = filesize($file);

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $quoted); 
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . $size);

올바른 헤더를 확인하여 헤더가 전송되면 서버에서 파일을 다운로드하려고 할 때 사용자에게 저장 대화 상자가 표시됩니다.

위 내용은 PHP 헤더를 사용하여 파일 다운로드를 안정적으로 강제하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.