PHP export CSV data output in a browser example _php instance for downloading or saving to a file

Source: Internet
Author: User

1. Provide download in browser output

Copy Code code as follows:

/**
* Export data to CSV file
* @param array $data data
* @param array $title _arr title
* @param string $file _name csv filename
*/
Function Export_csv (& $data, $title _arr, $file _name = ") {
Ini_set ("Max_execution_time", "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")) {//Solve the bug of the Chinese name garbled in IE browser output
$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

Copy Code code 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);
}

Invoke Sample (save to file):

Copy Code code as follows:

$file _name= "/var/www/tmp/test.csv";

$header = Array (
' 0 ' => ' parameter id ',
' 1 ' => ' parameter name ',
' 2 ' => ' statistic Times ',
' 3 ' => ' statistics percentage ',
' 4 ' => ' unique user number ',
' 5 ' => ' percent of unique users ',
' 6 ' => ' per capita number '
);
$csvList = Array (Array ("n", "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.