码迷,mamicode.com
首页 > 其他好文 > 详细

生成Tab键或逗号分隔的CSV

时间:2016-09-24 14:53:46      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

1 <?php
2 header("Content-type:text/csv;charset=utf-8");
3 header("Content-Disposition:attachment;filename=aa.csv");
4 header(‘Cache-Control:must-revalidate,post-check=0,pre-check=0‘);
5 header(‘Expires:0‘);
6 header(‘Pragma:public‘);
7 $data = "\xEF\xBB\xBFaaaaa\tbbbbb\tccccc\n11111\t222222\t33333"; // \xEF\xBB\xBF是bom头
8 $data = iconv(‘utf-8‘, ‘ucs-2‘, $data);
9 echo $data;

 

1 <?php
2 header("Content-type:text/csv;charset=utf-8");
3 header("Content-Disposition:attachment;filename=aa.csv");
4 header(‘Cache-Control:must-revalidate,post-check=0,pre-check=0‘);
5 header(‘Expires:0‘);
6 header(‘Pragma:public‘);
7 $data = "aaaaa,bbbbb,ccccc\n11111,222222,33333";
8 $data = iconv(‘utf-8‘, ‘gbk‘, $data);
9 echo $data;

 

生成Tab键或逗号分隔的CSV

标签:

原文地址:http://www.cnblogs.com/chanAndy/p/5903198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!