Php hides the file download method from the actual address ,. Php hides the file download method from the actual address. This article describes how php hides the actual address from the file download method. Share it with you for your reference. Details: The following php code hides the actual address of the file download method,
This example describes how to download a php file that hides the actual address. Share it with you for your reference. The details are as follows:
The following php code does not disclose the actual file.
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 help you with php programming.
Example: This article describes how to download a php file that hides the actual address. Share it with you for your reference. Details: The following php code...