Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP로 파일 다운로드를 강제하는 방법은 무엇입니까?

<시간/>

아래 코드를 사용하여 PHP에서 파일을 강제로 다운로드할 수 있습니다.

<?php
   header('Content-type: text/javascript');
   header('Content-Disposition: attachment; filename="file.js"');
   readfile(file that is downloaded.js'); //This can be printed for verification purpose
?>

참고 − 이것은 출력을 표시하기 전에 수행해야 합니다. 그렇지 않으면 파일에 다른 작업의 출력도 포함됩니다(관련이 없을 수 있음).

사용할 수 있는 또 다른 방법은 .htaccess 솔루션을 사용하는 것입니다. 이 방법에서는 서버의 모든 파일을 강제로 다운로드하고 .htaccess 파일에 추가할 수 있습니다. 이것은 아래에 설명되어 있습니다 -

AddType application/octet-stream csv
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=name of csv file');
header('Pragma: no-cache');
readfile("path-to-csv-file");