设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 创业者 手机 数据
当前位置: 首页 > 站长学院 > PHP教程 > 正文

剖析PHP实现下载文件的两种方法

发布时间:2022-07-22 12:31 所属栏目:121 来源:互联网
导读:本篇文章是对使用PHP实现下载文件的两种方法进行了详细的分析介绍,需要的朋友参考下 方法一: 复制代码 代码如下: header(Content-Description: File Transfer); header(Content-Type: application/octet-stream); header(Content-Disposition: attachment;
  本篇文章是对使用PHP实现下载文件的两种方法进行了详细的分析介绍,需要的朋友参考下
 
  方法一:
 
  复制代码 代码如下:
 
   header('Content-Description: File Transfer');
 
   header('Content-Type: application/octet-stream');
 
   header('Content-Disposition: attachment; filename='.basename($filepath));
 
   header('Content-Transfer-Encoding: binary');
 
   header('Expires: 0′);
 
   header('Cache-Control: must-revalidate, post-check=0, pre-check=0′);
 
   header('Pragma: public');
 
   header('Content-Length: ' . filesize($filepath));
 
   readfile($file_path);
 
  方法二:
 
  复制代码 代码如下:
 
   $fileinfo = pathinfo($filename);
 
   header('Content-type: application/x-'.$fileinfo['extension']);
 
   header('Content-Disposition: attachment; filename='.$fileinfo['basename']);
 
   header('Content-Length: '.filesize($filename));
 
   readfile($thefile);
 
   exit()。
 

(编辑:ASP站长网)

    网友评论
    推荐文章
      热点阅读