Php exports csv data in a browser and provides an example of downloading or saving it to a file.

Source: Internet
Author: User
This article mainly introduces how to export csv data in php to provide an example of downloading or saving csv data in a browser. For more information, see

This article mainly introduces how to export csv data in php to provide an example of downloading or saving csv data in a browser. For more information, see

1. Provide download in the browser output

The Code is as follows:


/**
* Export data to a CSV file
* @ Param array $ data
* @ Param array $ title_arr title
* @ Param string $ file_name CSV file name
*/
Function export_csv (& $ data, $ title_arr, $ file_name = ''){
Ini_set ("maid", "3600 ");

$ Csv_data = '';

/** Title */
$ Nums = count ($ title_arr );
For ($ I = 0; $ I <$ nums-1; ++ $ I ){
$ Csv_data. = '"'. $ title_arr [$ I]. '",';
}

If ($ nums> 0 ){
$ Csv_data. = '"'. $ title_arr [$ nums-1]." \ "\ r \ n ";
}

Foreach ($ data as $ k => $ row ){
For ($ I = 0; $ I <$ nums-1; ++ $ I ){
$ Row [$ I] = str_replace ("\" "," \ "\" ", $ row [$ I]);
$ Csv_data. = '"'. $ row [$ I]. '",';
}
$ Csv_data. = '"'. $ row [$ nums-1]." \ "\ r \ n ";
Unset ($ data [$ k]);
}

$ Csv_data = mb_convert_encoding ($ csv_data, "cp936", "UTF-8 ");

$ File_name = empty ($ file_name )? Date ('Y-m-d-H-I-S', time (): $ file_name;

If (strpos ($ _ SERVER ['HTTP _ USER_AGENT '], "MSIE") {// fix the Chinese name garbled by IE browser
$ File_name = urlencode ($ file_name );
$ File_name = str_replace ('+', '% 20', $ file_name );
}

$ File_name = $ file_name. '.csv ';
Header ("Content-type: text/csv ;");
Header ("Content-Disposition: attachment; filename =". $ file_name );
Header ('cache-Control: must-revalidate, post-check = 0, pre-check = 0 ');
Header ('expires: 0 ');
Header ('pragma: public ');
Echo $ csv_data;
}

2. Save to file

The Code is as follows:


Function export_csv ($ data, $ title_arr, $ file_name = ''){


$ Csv_data = '';


/** Title */
$ Nums = count ($ title_arr );
For ($ I = 0; $ I <$ nums-1; ++ $ I ){
$ Csv_data. = '"'. $ title_arr [$ I]. '",';
}


If ($ nums> 0 ){
$ Csv_data. = '"'. $ title_arr [$ nums-1]." \ "\ r \ n ";
}


Foreach ($ data as $ k => $ row ){
For ($ I = 0; $ I <$ nums-1; ++ $ I ){
$ Row [$ I] = str_replace ("\" "," \ "\" ", $ row [$ I]);
$ Csv_data. = '"'. $ row [$ I]. '",';
}
$ Csv_data. = '"'. $ row [$ nums-1]." \ "\ r \ n ";
Unset ($ data [$ k]);
}


$ File_name = empty ($ file_name )? Date ('Y-m-d-H-I-S', time (): $ file_name;
File_put_contents ($ file_name, $ csv_data );
}

Call example (save to file ):

The Code is as follows:


$ File_name = "/var/www/tmp/test.csv ";

$ Header = array (
'0' => 'parameter id ',
'1' => 'parameter name ',
'2' => 'statistical times ',
'3' => 'count percentage ',
'4' => 'unique user size ',
'5' => 'percentage of unique users ',
'6' => 'average number'
);
$ CsvList = array ("111", "title", "12", "100%", "23", "50%", "4 "));
Export_csv ($ csvList, $ header, $ file_name );

,

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.