search
HomeBackend DevelopmentPHP TutorialDetailed explanation of exporting to Excel or CSV based on PHP (with utf8, gbk encoding conversion)_PHP tutorial

The reason why php is imported into excel with garbled characters is because utf8 encoding does not support all utf8 encoding in the 🎜>
Copy code
The code is as follows:

header("Content-Type: application/vnd.ms-excel; charset=UTF -8"); header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre -check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream"); ​​
header("Content -Type: application/download");
header("Content-Disposition: attachment;filename=11.xls ");
header("Content-Transfer-Encoding: binary ");
?> ;


Php code



Copy code
The code is as follows:

  $filename="php import to excel-utf-8 encoding"; $filename=iconv("utf-8", "gb2312", $filename); echo $filename; ?>


gbk encoding case

Php code


Copy code
The code is as follows:

header("Content-Type: application/vnd.ms-excel; charset=UTF-8"); header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force -download");
header("Content-Type: application/octet-stream"); ​​
header("Content-Type: application/download");
header("Content-Disposition: attachment ;filename=11.xls ");
header("Content-Transfer-Encoding: binary ");
?>


Php code



Copy code
The code is as follows:

0. 0.$filename="php import to excel-utf-8 encoding"; 0.echo $filename; 0.?>
Download it into excel when you visit the website
If you want to distinguish between cells
Use a table to do it Just use the webpage
====================== Other methods ==================== ===========

1. Create simple Excel




Copy the code
The code is as follows:
0.0.header("Content-type:application/vnd.ms-excel"); 0.header("Content-Disposition:filename=php2excel .xls"); 0. 0.echo "A1/t B1/t C1/n";
0.echo "A2/t B2/t C2/n";
0 .echo "A3/t B3/t C3/n";
0.echo "A4/t B4/t C4/n";
0.?>



2. Create a simple CSV



Copy the code
The code is as follows:
$ action =$_GET['action'];if ($action=='make'){ $fp = fopen("demo_csv.csv","a"); //Open the csv file, if If it does not exist, create it $title = array("First_Name","Last_Name","Contact_Email","Telephone"); //First row of data
$data_1 = array("42343","423432" ,"4234","4234");
$data_2 = array("4234","Last_Name","Contact_Email","Telephone");
$title = implode(",",$title) ; //Use ' to split into strings
$data_1 = implode(",",$data_1); // Use ' to split into strings
$data_2 = implode(",",$data_2); / / Split into strings with '
$data_str =$title."/r/n".$data_1."/r/n".$data_2."/r/n"; //Add newline character
fwrite($fp,$data_str); //Write data
fclose($fp); //Close file handle
echo "Generation successful";
}
echo "
echo "Generate csv file";
?>


You can also make one Closed function:

Closed function one:



Copy code
The code is as follows:

function exportToCsv($csv_data, $filename = 'export.csv') {
    $csv_terminated = "/n";
    $csv_separator = ",";
    $csv_enclosed = '"';
    $csv_escaped = "//";
    // Gets the data from the database
    $schema_insert = '';
    $out = '';
    // Format the data
    foreach ($csv_data as $row)
    {
        $schema_insert = '';
        $fields_cnt = count($row);
        //printr($row);
        $tmp_str = '';
        foreach($row as $v)
        {
            $tmp_str .= $csv_enclosed.str_replace($csv_enclosed, $csv_escaped . $csv_enclosed, $v).$csv_enclosed.$csv_separator;
        } // end for

        $tmp_str = substr($tmp_str, 0, -1);
        $schema_insert .= $tmp_str;
        $out .= $schema_insert;
        $out .= $csv_terminated;
    } // end while
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Content-Length: " . strlen($out));
    header("Content-type: text/x-csv");
    header("Content-Disposition:filename=$filename");
    echo $out;
}
/*
$csv_data = array(array('Name', 'Address'));
array_push($csv_data, array($row['name'],$row['address']));
...
exportToCsv($csv_data,'new_file.csv');
*/

封闭函数二:
复制代码 代码如下:


/**
 * Simple class to properly output CSV data to clients. PHP 5 has a built
 * in method to do the same for writing to files (fputcsv()), but many times
 * going right to the client is beneficial.
 *
 * @author Jon Gales
 */
class CSV_Writer {
    public $data = array();
    public $deliminator;
    /**
     * Loads data and optionally a deliminator. Data is assumed to be an array
     * of associative arrays.
     *
     * @param array $data
     * @param string $deliminator
    */
    function __construct($data, $deliminator = ",")
    {
        if (!is_array($data))
        {
            throw new Exception('CSV_Writer only accepts data as arrays');
        }
        $this->data = $data;
        $this->deliminator = $deliminator;
    }
    private function wrap_with_quotes($data)
    {
        $data = preg_replace('/"(.+)"/', '""$1""', $data);
        return sprintf('"%s"', $data);
    }
    /**
     * Echos the escaped CSV file with chosen delimeter
     *
     * @return void
    */
    public function output()
    {
        foreach ($this->data as $row)
        {
            $quoted_data = array_map(array('CSV_Writer', 'wrap_with_quotes'), $row);
            echo sprintf("%s/n", implode($this->deliminator, $quoted_data));
        }
    }
    /**
     * Sets proper Content-Type header and attachment for the CSV outpu
     *
     * @param string $name
     * @return void
    */
    public function headers($name)
    {
        header('Content-Type: application/csv');
        header("Content-disposition: attachment; filename={$name}.csv");
    }
}
/*
//$data = array(array("one","two","three"), array(4,5,6));
$data[] = array("one","two","three");
$data[] = array(4,5,6);
$csv = new CSV_Writer($data);
$csv->headers('test');
$csv->output();
*/

3. 使用excel类
复制代码 代码如下:

require_once 'Spreadsheet/Writer.php';
$workbook = new Spreadsheet_Excel_Writer();
/* Generate CSV
$filename = date('YmdHis ').'.csv';
$workbook->send($filename); // Send Excel file name for download
*/
// Generate Excel
$filename = date( 'YmdHis').'.xls';
$workbook->send($filename); // Send Excel file name for download
$workbook->setVersion(8);
$workbook ->setBIFF8InputEncoding('UTF-8');
$worksheet =& $workbook->addWorksheet("Sheet-1");
$data[]= array('id','username' ,'company','email','mob','daytime','intent');
$data[] = array(1,'Laoliang','**Studio','jb51.net ','1363137966*',time(),'y');
$total_row = count($data);
$total_col = count($data[0]);
for ($row = 0; $row for ($col = 0; $col $worksheet->writeString($ row, $col, $data[$row][$col]); // Write data in sheet-1
}
}
/*
$worksheet =& $workbook- >addWorksheet("Sheet-2");
$data[]= array('id','username','company','email','mob','daytime','intent');
$data[] = array(1,'Laoliang','**Studio','jb51.net','1363137966*',time(),'y');
$total_row = count($data);
$total_col = count($data[0]);
for ($row = 0; $row for ($ col = 0; $col $worksheet->writeString($row, $col, $data[$row][$col]); // in sheet- 2 Write data in
}
}
*/
$workbook->close(); // Complete download
?>

Category 2
-----Function description
Read Excel file
function Read_Excel_File($ExcelFile,$Result)
$ExcelFile Excel file name
$Result Return The result
Function return value Normally returns 0, otherwise an error message is returned
The returned value array
The value of $result[sheet name][row][column] is the value of the corresponding Excel Cell

Create Excel file
function Create_Excel_File($ExcelFile,$Data)
$ExcelFile Excel file name
$Data Excel table data
Please write the function in the PHP script Beginning
Example 1:
Copy code The code is as follows:


require "excel_class.php ";
Read_Excel_File("Book1.xls",$return);
for ($i=0;$i{
for ($j=0;$j {
echo $return[Sheet1][$i][$j]."|" ;
}
echo "
";
}
?>

Example 2:
Copy the code The code is as follows:


require "excel_class.php";
Read_Excel_File("Book1.xls",$return);
Create_Excel_File("ddd.xls",$return[Sheet1]);
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327836.htmlTechArticleThe garbled code imported from php to excel is because utf8 encoding does not support all utf8 encoding in the xp system. It can be solved perfectly by transcoding. UTF-8 encoding case Php code copy code is as follows: ?php header("Cont...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft