php 生成Tab键或逗号分隔的CSV
时间:2021-03-18 09:45:24|栏目:PHP代码|点击: 次
php 生成Tab键或逗号分隔的CSV的代码如下所示:
<?php
header("Content-type:text/csv;charset=utf-8");
header("Content-Disposition:attachment;filename=aa.csv");
header('Cache-Control:must-revalidate,post-check=0,pre-check=0');
header('Expires:0');
header('Pragma:public');
$data = "\xEF\xBB\xBFaaaaa\tbbbbb\tccccc\n11111\t222222\t33333"; // \xEF\xBB\xBF是bom头
$data = iconv('utf-8', 'ucs-2', $data);
echo $data;
<?php
header("Content-type:text/csv;charset=utf-8");
header("Content-Disposition:attachment;filename=aa.csv");
header('Cache-Control:must-revalidate,post-check=0,pre-check=0');
header('Expires:0');
header('Pragma:public');
$data = "aaaaa,bbbbb,ccccc\n11111,222222,33333";
$data = iconv('utf-8', 'gbk', $data);
echo $data;
上一篇:PHP学习笔记之session
栏 目:PHP代码
本文标题:php 生成Tab键或逗号分隔的CSV
本文地址:http://www.codeinn.net/misctech/83075.html






