1
2
3
4
5
6
7
8
9
|
<?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 ;
|
1
2
3
4
5
6
7
8
9
|
<?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 生成Tab键或逗号分隔的CSV,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!