首页 >php教程 >php手册 >生成csv文件的header的设置

生成csv文件的header的设置

WBOY
WBOY原创
2016-06-13 10:50:291287浏览

01  02 $csvContent = "qwe,qwe,qwe,qwe,qwe,qwe,qwe \n";
03 header("Content-Type: application/vnd.ms-excel; charset=GB2312"); 
04 header("Pragma: public"); 
05 header("Expires: 0"); 
06 header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
07 header("Content-Type: application/force-download"); 
08 header("Content-Type: application/octet-stream"); 
09 header("Content-Type: application/download"); 
10 header("Content-Disposition: attachment;filename=CSV数据.csv "); 
11 header("Content-Transfer-Encoding: binary ");
12 $csvContent = iconv("utf-8","gb2312",$csvContent);
13 echo $csvContent;
14 exit;
15 ?>

 

作者:张大鹏
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn