Home  >  Article  >  Backend Development  >  PHP hidden file download path example_PHP tutorial

PHP hidden file download path example_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:44:531321browse

If we need to hide the download file path, we only need to enter it directly without jumping the path. Let’s look at an example below, hoping it will be helpful to all students.

 代码如下 复制代码


//设置头信息,强制下载文件
function download_send_headers($filename) {
// disable caching
$now = gmdate("D, d M Y H:i:s");
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
header("Last-Modified: {$now} GMT");

// force download
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");

// disposition / encoding on response body
header("Content-Disposition: attachment;filename={$filename}");
header("Content-Transfer-Encoding: binary");
}

$file_name='download.csv';
$file_path=dirname ( __FILE__ ).'/file/'.$file_name;

download_send_headers($file_name);
readfile($file_path);
exit;
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/633060.htmlTechArticleIf we need to hide the download file path, we just need to enter it directly without jumping the path. Below we Let’s look at an example, I hope it will be helpful to all students. Generation...
Statement:
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