Home > Article > Backend Development > How to hide the actual address of file download in php, _PHP tutorial
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); }
I hope this article will be helpful to everyone’s PHP programming design.