簡介:
造訪特定 Web 連結時下載檔案是下載網站的常見做法。 PHP 提供了實現此行為的功能,為使用者提供了一種輕鬆地將檔案儲存到本機系統的方法。
自動下載的 PHP代碼:
要啟動自動下載,在輸出檔案之前加入以下標頭:
header("Content-Disposition: attachment; filename=\"" . basename($File) . "\""); header("Content-Type: application/octet-stream"); header("Content-Length: " . filesize($File)); header("Connection: close");
說明:
附加說明:
以上是PHP如何自動觸發檔案下載?的詳細內容。更多資訊請關注PHP中文網其他相關文章!