在PHP 中強製檔案下載:處理遠端檔案
強製檔案下載而不是在瀏覽器中開啟它們對於媒體檔案至關重要。為了處理這種情況,視訊駐留在單獨的伺服器上,PHP 提供了一個涉及操作 HTTP 標頭的解決方案。
// Locate the file. $file_name = 'file.avi'; $file_url = 'http://www.myremoteserver.com/' . $file_name; // Configure HTTP headers for forced download. header('Content-Type: application/octet-stream'); header("Content-Transfer-Encoding: Binary"); header("Content-disposition: attachment; filename=\"". $file_name . "\""); // Initiate the download process. readfile($file_url); // Terminate the script to prevent any further output. exit;
將 Content-Type 設為 application/octet-stream,我們指示該檔案是用於下載的二進位流。內容傳輸編碼:二進位確保檔案的二進位格式保持不變。最後,附附件的內容處置可確保提示使用者下載文件,而不是在瀏覽器中開啟文件。
請注意,readfile 需要啟用 fopen_wrappers 才能從遠端 URL 存取檔案。透過利用此技術,您可以有效地強制下載儲存在單獨伺服器上的文件,為您的網站訪客提供更用戶友好的體驗。
以上是如何在 PHP 中強製檔案下載:處理遠端檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!