>php教程 >php手册 >php运用readfile函数给隐藏下载文件地址增加权限判断

php运用readfile函数给隐藏下载文件地址增加权限判断

WBOY
WBOY원래의
2016-06-21 08:52:01890검색

1 以上代码实现了真是URL路径的隐藏功能, 本页开头可以进行权限判断。

2 效果如图,我们看到下面文件下载的URL已经被test.php隐藏.

 

 


02 $file = get_file_address();// 文件的真实地址(支持url,不过不建议用url)
03
04 if (file_exists($file)) {
05 header('Content-Description: File Transfer');
06 header('Content-Type: application/octet-stream');
07 header('Content-Disposition: attachment; filename='.basename($file));
08 header('Content-Transfer-Encoding: binary');
09 header('Expires: 0');
10 header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
11 header('Pragma: public');
12 header('Content-Length: ' . filesize($file));
13 ob_clean();
14 flush();
15 readfile($file);
16 exit;
17 }
18 ?>



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.