使用內容長度標頭將檔案從FTP 伺服器下載到瀏覽器
您可以將檔案直接下載到使用者的瀏覽器,而不將其儲存在透過從程式碼中刪除輸出緩衝來連接伺服器。
<code class="php">ftp_get($conn_id, "php://output", $file, FTP_BINARY);</code>
要新增 Content-Length 標頭,您需要先使用 ftp_size() 取得檔案大小:
<code class="php">$conn_id = ftp_connect("ftp.example.com"); ftp_login($conn_id, "username", "password"); ftp_pasv($conn_id, true); $file_path = "remote/path/file.zip"; $size = ftp_size($conn_id, $file_path); header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=" . basename($file_path)); header("Content-Length: $size"); ftp_get($conn_id, "php://output", $file_path, FTP_BINARY);</code>
請記住包含錯誤處理以獲得完整的解決方案。
其他背景
有關FTP 檔案處理的更多信息,請參閱以下資源:
以上是如何使用 PHP 將檔案從 FTP 伺服器直接下載到瀏覽器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!