ホームページ  >  記事  >  バックエンド開発  >  PHPで実際のファイルのダウンロードアドレスを隠す方法

PHPで実際のファイルのダウンロードアドレスを隠す方法

coldplay.xixi
coldplay.xixiオリジナル
2020-09-29 09:58:072929ブラウズ

実際のファイルのダウンロード アドレスを非表示にする

php メソッド: header と [file_get_contents] メソッドを使用します。コードは [header("Content-Type: $mimetype");echo file_get_contents($pathto)] です。

PHPで実際のファイルのダウンロードアドレスを隠す方法

実際のファイルのダウンロード アドレスを非表示にする php メソッド:

header メソッドと file_get_contents メソッドに関連する使用スキルphp 、非常に実用的な価値があります。必要な友人は以下を参照してください:

実装方法 1:

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(&#39;Content-Description: File Transfer&#39;);
  header(&#39;Content-Type: application/octet-stream&#39;);
  header(&#39;Content-Disposition: attachment; filename=&#39;.basename($file));
  header(&#39;Content-Transfer-Encoding: binary&#39;);
  header(&#39;Expires: 0&#39;);
  header(&#39;Cache-Control: must-revalidate, post-check=0, pre-check=0&#39;);
  header(&#39;Pragma: public&#39;);
  header(&#39;Content-Length: &#39; . filesize($file));
  ob_clean();
  flush();
  readfile($file);
  exit;
}
?>

もっと知りたいプログラミングについては、php training 列に注目してください。

以上がPHPで実際のファイルのダウンロードアドレスを隠す方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。