js と php を組み合わせてダウンロード機能を実装します
サーバー
手順は次のとおりです。ヘッダー ファイルのパラメーターを設定し、ファイルを読み取って出力します。次のコードの File_get_contents は、fread と fclose に置き換えることができます。
download.php
<?php $filename = $_GET['filename']; $path = __DIR__."/file/".$filename; header( "Content-type: application/octet-stream"); header( "Accept-Ranges: bytes "); header( "Accept-Length: " .filesize($filename)); header( "Content-Disposition: attachment; filename={$filename}"); echo file_get_contents($filename);
クライアント
多くの場合、フロントエンド ページの [ダウンロード] を直接クリックしてファイルをダウンロードします。上記の download.php に特にジャンプしてダウンロードするのではなく、
したがって、ファイルをダウンロードするには、フロントエンドで download.php への更新不要のアクセスを実装する必要があります。これを実現するには、非表示の iframe を使用するのが良い方法です。コードは次のとおりです。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <a href="javascript:download_file('http://localhost/download.php?filename=\" rel="external nofollow" 测试文件.doc\"')">下载</a> <script type="text/javascript"> function download_file(url) { if (typeof (download_file.iframe) == "undefined") { var iframe = document.createElement("iframe"); download_file.iframe = iframe; document.body.appendChild(download_file.iframe); } //alert(download_file.iframe); download_file.iframe.src = url; download_file.iframe.style.display = "none"; } </script> </body> </html>
file_get_contents が最初に読み取られてからエコーされます。代わりに、より効率的な readfile 関数を使用できます。
以上がjs phpがリフレッシュフリーダウンロード機能を実装の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。