欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

生成Tab键或逗号分隔的CSV

程序员文章站 2022-05-20 22:15:46
...
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;