当前位置:Gxlcms > PHP教程 > phpheader函数文件下载时直接提示保存的代码

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

时间:2021-07-01 10:21:17 帮助过:15人阅读

  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大全。

人气教程排行