在PHP中實現文件下載的響應可以通過以下步驟實現:
header()
函數設置響應頭,包括Content-Type和Content-Disposition。<?php
$file = 'path/to/your/file.pdf';
header('Content-Type: application/pdf');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
readfile()
函數將文件內容輸出到響應流中。readfile($file);
<?php
$file = 'path/to/your/file.pdf';
header('Content-Type: application/pdf');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
readfile($file);
通過上述步驟,用戶訪問該PHP頁面時將會觸發文件下載,而不是在瀏覽器中打開文件。