다음 코드를 사용하여 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");
위 내용은 PHP를 사용하여 파일을 강제로 다운로드하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!