查看: 129|回复: 1

记录php使用header实现文件下载功能

[复制链接]

2

主题

7

帖子

9

积分

新手上路

Rank: 1

积分
9
发表于 2022-12-3 20:59:16 | 显示全部楼层 |阅读模式
定义和用法
header() 函数向客户端发送原始的 HTTP 报头。
语法:header(string,replace,http_response_code)
数描述string必需。规定要发送的报头字符串。
replace可选。指示该报头是否替换之前的报头,或添加第二个报头。
默认是 true(替换)。false(允许相同类型的多个报头)。
http_response_code可选。把 HTTP 响应代码强制为指定的值。(PHP 4 以及更高版本可用)
常见的header功能
header('HTTP/1.1 200 OK'); // ok 正常访问
header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在
header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301
header('Location: http://www.test.con/'); //跳转到一个新的地址
header('Refresh: 10; url=http://www.test.con/'); //延迟转向 也就是隔几秒跳转
header('X-Powered-By: PHP/7.0.0'); //修改 X-Powered-By信息
header('Content-language: en'); //文档语言
header('Content-Length: 1234'); //设置内容长度
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT'); //告诉浏览器最后一次修改时间
header('HTTP/1.1 304 Not Modified'); //告诉浏览器文档内容没有发生改变
###内容类型###
header('Content-Type: text/html; charset=utf-8'); //网页编码
header('Content-Type: text/plain'); //纯文本格式
header('Content-Type: image/jpeg'); //JPG、JPEG
header('Content-Type: application/zip'); // ZIP文件
header('Content-Type: application/pdf'); // PDF文件
header('Content-Type: audio/mpeg'); // 音频文件
header('Content-type: text/css'); //css文件
header('Content-type: text/javascript'); //js文件
header('Content-type: application/json'); //json
header('Content-type: application/pdf'); //pdf
header('Content-type: text/xml'); //xml
header('Content-Type: application/x-shockw**e-flash'); //Flash动画
######
###声明一个下载的文件###
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="ITblog.zip"');
header('Content-Transfer-Encoding: binary');
readfile('test.zip');
######
###对当前文档禁用缓存###
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
######
###显示一个需要验证的登陆对话框###
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
######
###声明一个需要下载的xls文件###
header('Content-Disposition: attachment; filename=abc.xlsx');
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Length: '.filesize('./test.xls'));
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate');
header('Pragma: public');
readfile('./test.xls');下载所要用的的请求头
header("Content-type:application/octet-stream");
header("Accept-Ranges:bytes");
header("Accept-Length:".$file_Size);
header("Content-Disposition: attachment; filename=".$filename);

  • content-type:文件类型
  • Accept-Ranges:表示接收数据的类型或者范围,图片属于二进制的东西所以需要使用字节的方式传输
  • Accept-Length:表示接收的文件大小,php文件下载需要告诉浏览器下载的文件有多大
  • Content-Disposition:附件只需要把文件名给过去就可以,这个名称就是下载时显示的文件名称
文件名是中文的时候需要注意转码 $filename=iconv("UTF-8","GB2312",$filename);php的文件下载机制是首先nginx把文件信息读入服务器内存,然后使用请求头把文件二进制信息通过浏览器传给客户端
feof用来判断文件是否已经读到了末尾,fread用来把文件读入缓冲区,缓冲区的大小是1024,一边读取一边把数据输出到浏览器。为了下载的安全性每次读数据都进行字节的计数。文件读取完毕后关闭输入流
网上的代码示例
<?php
ob_clean();
$action = $_GET['action'];
$filename = base64_decode($action);//传的参数encode了
$filepath = '/data/www/www.test.com/'.$filename;
if(!file_exists($filepath)){
  exit;
}
$fp=fopen($filepath,"r");
$filesize=filesize($filepath);
header("Content-type:application/octet-stream");
header("Accept-Ranges:bytes");
header("Accept-Length:".$filesize);
header("Content-Disposition: attachment; filename=".$filename);
$buffer=1024;
$buffer_count=0;
while(!feof($fp)&&$file_Size-$buffer_count>0){
$data=fread($fp,$buffer);
$buffer_count+=$buffer;
  echo $data;
}
fclose($fp);
?>检查过的代码 框架是CodeIgniter
public function goods_check_excel(){
            $this->common_model->checkpurview(44);
                $name = '仓库发货核对表_'.date('YmdHis').'.xls';
                sys_csv($name);
                $this->common_model->logs('仓库发货核对表导出:'.$name);
                $beginDate  = str_enhtml($this->input->get_post('beginDate',TRUE));
                $endDate    = str_enhtml($this->input->get_post('endDate',TRUE));
                $cangku   = str_enhtml($this->input->get_post('cangku',TRUE));
                $type = str_enhtml($this->input->get_post('type',TRUE));

        $where = 'isDelete=0 and transType>0';
        $where .= $beginDate ? ' and billDate>="'.$beginDate.'"' : '';
                $where .= $endDate ? ' and billDate<="'.$endDate.'"' : '';
                $where .= $cangku      ? ' and outLocationId like "%'.$cangku.'%"' : '';
               
        $list = $this->mysql_model->query("select * from ci_invoice where ".$where,2);
                foreach ($list as $arr1=>$row1) {
                    $arr = time() + $arr1;
            
                        if($row1['transTypeName']=='出库'){
                                $res = unserialize($row1['postData']);
                                 
                                $outqty        = $res['totalQty'];               
                                $sum2   += $outqty;            
                               
                                $LocationId = $res['outLocationId'];

                                $loname = $this->mysql_model->query("select name from ci_storage where id='$LocationId' ",1);

                                $v[$arr]['date']          = $res['billDate'];   
                                $v[$arr]['buName']        = $res['contactName'];        
                                $v[$arr]['location']        = $loname['name'];
                                $v[$arr]['outqty']        = $res['totalQty'];
                               
                                $v[$arr]['totalcost'] = $res['totalAmount'];
                $v[$arr]['description'] = $res['description'];

                                $zprice += $v[$arr]['totalcost'];//总金额
                        }
                }
               
        $sort = array_column($v,'date');
        array_multisort($sort,SORT_DESC,$v);
        $qw = $this->GetRepeatValGroup($v,'buName');
        // array_walk($v, function(&$va,$key){
        //    $va['sort'] = $key+1;
        // });
   
        $data['outqty'] = $sum2;
        $data['totalcost'] = $zprice;
        $data['list'] = $qw;
                $this->load->view('report/goods_check_excel',$data);

    }

function sys_csv($name){
                header("Content-Encoding:GB2312");
                header("Content-type:text/xls,charset=GB2312");
                header("Content-Disposition:attachment;filename=".$name);
                header('Cache-Control:must-revalidate,post-check=0,pre-check=0');
                header('Expires:0');
                header('Pragma:public');
        }
生成excel代码
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');?>
<table width="1440px" class="list">
        <tr>
                <td colspan="12" class='H' align="center"><h3>仓库发货核对表</h3></td>
        </tr>
        <tr>
                <td colspan="12">日期:<?php echo $beginDate;?>至<?php echo $endDate;?></td>
        </tr>
</table>

<table width="1440px" class="list" border="1">
        <thead>
                <tr>
                <!-- <th>商品编号</th> -->
                <th>客户名称</th>
                <th>发货排序</th>
                <th>发货仓库</th>
                <th>发货时间</th>
                <th>件数</th>
                <th>金额</th>
                <th>备注</th>
                <th>手写备注</th>
                </tr>
        </thead>
        <tbody>
                <?php
                $sum1 = $sum2 = $sum3 = $sum4 = $sum5 = [];
                foreach($list as $arr=>$row) {
                        foreach($row as $arr1=>$row1){
                                $sum1[$arr] += $row1['outqty'];
                                $sum2[$arr] += $row1['totalcost'];
            ?>               
                <tr>
                   <!-- <td><?php echo $arr1; ?></td> -->
                   <td><?php echo $row1['buName']; ?></td>
                   <td>    </td>
                   <td><?php echo $row1['location']?></td>
                   <td><?php echo $row1['date']?></td>
                   <td><?php echo $row1['outqty']?></td>
                   <td><?php echo $row1['totalcost']?></td>
                   <td><?php echo $row1['description']?></td>
                   <td>    </td>
                </tr>
                <?php  } ?>
                <tr style="color: red;">
                        <td colspan="4" class="R B">核对合计:</td>
                        <td class="R B"><?php echo $sum1[$arr]; ?></td>
                        <td class="R B"><?php echo str_money($sum2[$arr],$this->systems['qtyPlaces'])?></td>
                </tr>
                <?php } ?>
        </tbody>
</table>导出成果

回复

使用道具 举报

4

主题

11

帖子

23

积分

新手上路

Rank: 1

积分
23
发表于 2025-3-27 08:22:26 | 显示全部楼层
是爷们的娘们的都帮顶!大力支持
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表