PHP を使用してファイルを強制的にダウンロードする
背景:
「ダウンロード」を実装しようとしていますWeb サイトに「このファイル」機能を追加すると、ユーザーはビデオをストリーミングする代わりに、別のサーバーに保存されているビデオを直接ダウンロードできるようになります。
解決策:
PHP を使用してファイルのダウンロードを強制するには、次のコード スニペットを利用できます:
// Specify the file location and remote URL. $file_name = 'file.avi'; $file_url = 'http://www.myremoteserver.com/' . $file_name; // Set appropriate headers to force 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); exit; // Prevent any further script output.
実装:
注: readfile によるリモートの読み取りを許可するには、fopen_wrappers が有効になっていることを確認してください。 URL。
以上がPHPを使用してファイルを強制的にダウンロードするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。