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

php header函数 文件下载时直接提示保存的代码

程序员文章站 2022-05-17 12:59:17
...
  1. $filename = '路径+实际文件名';
  2. //文件的类型
  3. header('Content-type: application/pdf');
  4. //下载显示的名字
  5. header('Content-Disposition: attachment; filename="保存文件名.pdf"');
  6. readfile("$filename");
  7. exit();
  8. ?>
复制代码

提供一个网上提到较多的php header函数实现下载的方法。

  1. if (isset($link))
  2. {
  3. Header("HTTP/1.1 303 See Other");
  4. Header("Location: $link");
  5. exit;
  6. }
  7. ?>
复制代码

$link就是文件的实际路径。

附,服务器响应HTTP header的类型Content-Type大全。