Home > Backend Development > PHP Tutorial > How to hide the actual address of file download in php, _PHP tutorial

How to hide the actual address of file download in php, _PHP tutorial

WBOY
Release: 2016-07-13 09:56:53
Original
776 people have browsed it

How to download files with php hiding the actual address,

The example in this article describes the method of downloading files with php hiding the actual address. Share it with everyone for your reference. The details are as follows:

The following php code does not reveal the actual file download address.

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);
}
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/986072.htmlTechArticlephp file download method that hides the actual address. This article describes the file download method that php hides the actual address. Share it with everyone for your reference. The details are as follows: The following php code...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template