Generate CSV files separated by a Tab key or a comma. Separate csv files by a comma.

Source: Internet
Author: User

Generate CSV files separated by a Tab key or a comma. Separate csv files by a comma.

1 <? Php2 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 is the bom header 8 $ data = iconv ('utf-8', 'ucos-2', $ data); 9 echo $ data;

 

1 <? Php2 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;

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.