


This article mainly introduces the method of reading and writing Excel files in native PHP. It analyzes the related implementation methods and operating precautions of using native PHP to read and write Excel files in the form of examples. Friends in need can refer to the following
The example of this article analyzes the method of reading and writing excel files in native PHP. I would like to share it with you for your reference. The details are as follows:
Recently, I encountered a need at work. I need to export the data in the database to an excel file and download the excel file. Since I haven't done it before, I looked it up on Baidu. Most of the people on the Internet talk about using the PHPExcel class to operate excel files. You have to download this class before you can use it. But I just want to use native PHP and don't want to be so troublesome. Fortunately Some netizens also talked about the method of generating excel files using native PHP. It is actually very simple. Now I will share the code I have practiced based on online information.
Generally, our data import operation is implemented by the user clicking a button on the web page to trigger the corresponding js method, and then requesting the php interface. Therefore, there are two main methods to complete this requirement. .
Method 1: Use window.open()
directly in the js code to open the url of the php interface, and you can download the excel file generated by php.
php interface code is as follows:
$mysqli = mysqli_connect('localhost', 'root', '123456', 'test'); $sql = 'select * from country'; $res = mysqli_query($mysqli, $sql); header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=country.xls"); echo "code\t"; echo "name\t"; echo "population\t\n"; if(mysqli_num_rows($res) > 0) { while($row = mysqli_fetch_array($res)) { echo $row['code']."\t"; echo $row['name']."\t"; echo $row['population']."\t\n"; } }
Method 2: php interface first save the generated excel file in In the server, the file path is then returned to js, and js uses window.open()
to open the file path and download it.
php interface code is as follows:
$mysqli = mysqli_connect('localhost', 'root', '123456', 'test'); $sql = 'select * from country'; $res = mysqli_query($mysqli, $sql); $file = fopen('./country.xls', 'w'); fwrite($file, "code\tname\tpopulation\t\n"); if(mysqli_num_rows($res) > 0) { while($row = mysqli_fetch_array($res)) { fwrite($file, $row['code']."\t".$row['name']."\t".$row['population']."\t\n");//这里写得不好,应该把所有文件内容组装到一个字符串中然后一次性写入文件。 } } fclose($file); echo 'http://www.jtw.com/....../country.xls';//这里返回文件路径给js
The two methods are very similar, both can export the data in the database to an excel file and Download the file. The final screenshot of the file is as follows:
If necessary, you can also use native php to read the contents of the excel file. This is mainly used to convert the excel file into The data is imported into the database.
The code is as follows: (Here we only show how to read file data into an array)
$path = './country.xls'; $file = fopen($path, 'r'); //标题行读取(第一行) $row = fgets($file); $row = explode("\t", $row); $title = array(); foreach($row as $k => $v) { $title[$k] = str_replace("\n", '', $v); } //内容读取 $data = array(); $count = 0; while(!feof($file)) { $row = fgets($file); $row = explode("\t", $row); if(!$row[0]) continue;//去除最后一行 foreach($title as $k => $v) { $data[$count][$title[$k]] = $row[$k]; } $count ++; } fclose($file); echo '<pre class="brush:php;toolbar:false">'; print_r($data);
However, using excel generated by native php There is a problem with the file, that is, every time I save the file after editing it, the following screenshot will always appear: There may be some problems with the file itself. . .
And when using native PHP to read the generated excel file, there will be some weird situations such as Chinese garbled characters. Therefore, it is best to use native PHP to generate excel files only under certain circumstances: simply exporting data from the database to a file for easy viewing, without modifying the file or reading the file. In this case, using native PHP to generate excel is enough to meet the needs, eliminating the trouble of using third-party libraries to operate excel. However, if you still need to modify, save, and read data after generating the file, you should just use third-party libraries such as phpexcel to perform read and write operations, which can avoid many tangled problems.
Method of exporting to Excel or CSV based on PHP
About the usage of Widget in ThinkPHP3.1
The above is the detailed content of About the method of reading and writing excel files in native php. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

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

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


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

WebStorm Mac version
Useful JavaScript development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 English version
Recommended: Win version, supports code prompts!
