|
定义和用法
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[&#39;action&#39;];
$filename = base64_decode($action);//传的参数encode了
$filepath = &#39;/data/www/www.test.com/&#39;.$filename;
if(!file_exists($filepath)){
exit;
}
$fp=fopen($filepath,&#34;r&#34;);
$filesize=filesize($filepath);
header(&#34;Content-type:application/octet-stream&#34;);
header(&#34;Accept-Ranges:bytes&#34;);
header(&#34;Accept-Length:&#34;.$filesize);
header(&#34;Content-Disposition: attachment; filename=&#34;.$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 = &#39;仓库发货核对表_&#39;.date(&#39;YmdHis&#39;).&#39;.xls&#39;;
sys_csv($name);
$this->common_model->logs(&#39;仓库发货核对表导出:&#39;.$name);
$beginDate = str_enhtml($this->input->get_post(&#39;beginDate&#39;,TRUE));
$endDate = str_enhtml($this->input->get_post(&#39;endDate&#39;,TRUE));
$cangku = str_enhtml($this->input->get_post(&#39;cangku&#39;,TRUE));
$type = str_enhtml($this->input->get_post(&#39;type&#39;,TRUE));
$where = &#39;isDelete=0 and transType>0&#39;;
$where .= $beginDate ? &#39; and billDate>=&#34;&#39;.$beginDate.&#39;&#34;&#39; : &#39;&#39;;
$where .= $endDate ? &#39; and billDate<=&#34;&#39;.$endDate.&#39;&#34;&#39; : &#39;&#39;;
$where .= $cangku ? &#39; and outLocationId like &#34;%&#39;.$cangku.&#39;%&#34;&#39; : &#39;&#39;;
$list = $this->mysql_model->query(&#34;select * from ci_invoice where &#34;.$where,2);
foreach ($list as $arr1=>$row1) {
$arr = time() + $arr1;
if($row1[&#39;transTypeName&#39;]==&#39;出库&#39;){
$res = unserialize($row1[&#39;postData&#39;]);
$outqty = $res[&#39;totalQty&#39;];
$sum2 += $outqty;
$LocationId = $res[&#39;outLocationId&#39;];
$loname = $this->mysql_model->query(&#34;select name from ci_storage where id=&#39;$LocationId&#39; &#34;,1);
$v[$arr][&#39;date&#39;] = $res[&#39;billDate&#39;];
$v[$arr][&#39;buName&#39;] = $res[&#39;contactName&#39;];
$v[$arr][&#39;location&#39;] = $loname[&#39;name&#39;];
$v[$arr][&#39;outqty&#39;] = $res[&#39;totalQty&#39;];
$v[$arr][&#39;totalcost&#39;] = $res[&#39;totalAmount&#39;];
$v[$arr][&#39;description&#39;] = $res[&#39;description&#39;];
$zprice += $v[$arr][&#39;totalcost&#39;];//总金额
}
}
$sort = array_column($v,&#39;date&#39;);
array_multisort($sort,SORT_DESC,$v);
$qw = $this->GetRepeatValGroup($v,&#39;buName&#39;);
// array_walk($v, function(&$va,$key){
// $va[&#39;sort&#39;] = $key+1;
// });
$data[&#39;outqty&#39;] = $sum2;
$data[&#39;totalcost&#39;] = $zprice;
$data[&#39;list&#39;] = $qw;
$this->load->view(&#39;report/goods_check_excel&#39;,$data);
}
function sys_csv($name){
header(&#34;Content-Encoding:GB2312&#34;);
header(&#34;Content-type:text/xls,charset=GB2312&#34;);
header(&#34;Content-Disposition:attachment;filename=&#34;.$name);
header(&#39;Cache-Control:must-revalidate,post-check=0,pre-check=0&#39;);
header(&#39;Expires:0&#39;);
header(&#39;Pragma:public&#39;);
}
生成excel代码
<?php if (!defined(&#39;BASEPATH&#39;)) exit(&#39;No direct script access allowed&#39;);?>
<table width=&#34;1440px&#34; class=&#34;list&#34;>
<tr>
<td colspan=&#34;12&#34; class=&#39;H&#39; align=&#34;center&#34;><h3>仓库发货核对表</h3></td>
</tr>
<tr>
<td colspan=&#34;12&#34;>日期:<?php echo $beginDate;?>至<?php echo $endDate;?></td>
</tr>
</table>
<table width=&#34;1440px&#34; class=&#34;list&#34; border=&#34;1&#34;>
<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[&#39;outqty&#39;];
$sum2[$arr] += $row1[&#39;totalcost&#39;];
?>
<tr>
<!-- <td><?php echo $arr1; ?></td> -->
<td><?php echo $row1[&#39;buName&#39;]; ?></td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td><?php echo $row1[&#39;location&#39;]?></td>
<td><?php echo $row1[&#39;date&#39;]?></td>
<td><?php echo $row1[&#39;outqty&#39;]?></td>
<td><?php echo $row1[&#39;totalcost&#39;]?></td>
<td><?php echo $row1[&#39;description&#39;]?></td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
<?php } ?>
<tr style=&#34;color: red;&#34;>
<td colspan=&#34;4&#34; class=&#34;R B&#34;>核对合计:</td>
<td class=&#34;R B&#34;><?php echo $sum1[$arr]; ?></td>
<td class=&#34;R B&#34;><?php echo str_money($sum2[$arr],$this->systems[&#39;qtyPlaces&#39;])?></td>
</tr>
<?php } ?>
</tbody>
</table>导出成果
 |
|