


Detailed 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/download");
header("Content-Disposition: attachment;filename=11.xls ");
header("Content-Transfer-Encoding: binary ");
?> ;
Php code
Copy code
gbk encoding case
Php code
Copy code
The code is as follows:
header("Content-Type: application/download");
header("Content-Disposition: attachment ;filename=11.xls ");
header("Content-Transfer-Encoding: binary ");
?>
Php code
Copy code
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.echo "A4/t B4/t C4/n";
0.?>
2. Create a simple CSV
The code is as follows:
$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 < $total_row; $row ++) {
for ($col = 0; $col < $total_col; $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 < $total_row; $row ++) {
for ($ col = 0; $col < $total_col; $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:
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:
require "excel_class.php";
Read_Excel_File("Book1.xls",$return);
Create_Excel_File("ddd.xls",$return[Sheet1]);
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
