この記事では、PHP で実際のアドレスを隠すファイルのダウンロード方法を主に紹介します。これには、PHP の header メソッドと file_get_contents メソッドの関連した使用方法も含まれます。必要な場合は、次の情報を参照してください。
この記事の例 ファイルのダウンロードの実際のアドレスを非表示にする php メソッド。参考のためにみんなで共有してください。詳細は次のとおりです。
次の PHP コードでは、実際のファイルのダウンロード アドレスは表示されません。
function download_document($filename,$path="",$mimetype="application/octet-stream") { header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Content-Disposition: attachment; filename = $filename"); header("Content-Length: " . filesize($pathto . $filename)); header("Content-Type: $mimetype"); echo file_get_contents($pathto . $filename); }
実装方法 2:
<?php $file = "1.txt";// 文件的真实地址(支持url,不过不建议用url) if (file_exists($file)) { header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename($file)); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: ' . filesize($file)); ob_clean(); flush(); readfile($file); exit; } ?>
まとめ: 以上がこの記事の全内容です。皆さんの学習に役立つことを願っています。
#関連する推奨事項:
php はリンク リストを作成し、リンク リスト ノードを追加、削除、更新、および走査します
以上がPHPでファイルの実際のダウンロードアドレスを隠す方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。