PHPで実際のファイルアドレスを隠すにはどうすればよいですか?この記事では主に、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 ファイルの分割とマージ (ブレークポイントからの続き) Pass)
PHP ダウンロード file_put_contents と readfile の比較
以上がphpは実際のファイルアドレスを隠しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。