欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php readfile函数下载文件并判断权限的代码示例

程序员文章站 2022-03-26 21:12:15
...
  1. /**
  2. * header与readfile函数应用举例
  3. * 下载文件 判断权限
  4. * edit bbs.it-home.org
  5. */
  6. $file = get_file_address();// 文件的真实地址(支持url,不过不建议用url)
  7. if (file_exists($file))
  8. {
  9. header('Content-Description: File Transfer');
  10. header('Content-Type: application/octet-stream');
  11. header('Content-Disposition: attachment; filename='.basename($file));
  12. header('Content-Transfer-Encoding: binary');
  13. header('Expires: 0');
  14. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  15. header('Pragma: public');
  16. header('Content-Length: ' . filesize($file));
  17. ob_clean(); //注意此函数的调用,清空但不关闭输出缓存,否则下载的文件头两个字符会是0a
  18. flush();
  19. readfile($file); // 输出文件内容
  20. }
  21. ?>
复制代码