Home >Backend Development >PHP Tutorial >How to Stream FTP Files Directly to the Browser Without Saving Locally?
This question seeks an efficient way to retrieve a file from an FTP server and send it directly to the user's browser, bypassing local storage and redirects.
The provided PHP function, getFtpFileContents, fetches the file into memory but requires subsequent manual steps to send it to the browser. To remove the need for intermediate storage, simply remove the output buffering code:
<code class="php">ftp_get($conn_id, "php://output", $file, FTP_BINARY);</code>
If you wish to include the Content-Length header, it is necessary to query the file size first:
<code class="php">$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>
Remember to incorporate error handling into your code for robust operation.
The above is the detailed content of How to Stream FTP Files Directly to the Browser Without Saving Locally?. For more information, please follow other related articles on the PHP Chinese website!