Use PHP's built-in functions fputcsv and fgetcsv to export and import reports

巴扎黑
Release: 2016-11-08 11:10:05
Original
1484 people have browsed it

PHP comes with the function fputcsv which can realize the printing report (Excel) function. If your requirements for report format are not very high, then fputcsv is a good choice. It has high execution efficiency, does not require third-party libraries, and is very convenient to use.

Copy after login

The above code will generate a csv file locally, which can be opened with Excel. Isn’t it very simple? If there is Chinese, after it is executed on Linux, it will be garbled when downloaded and opened locally, so you can use the iconv function to convert it.

$list = array();

$tmp = "Order number, order payment amount, lucky number, user name, user type, period, number generation time, lottery time, award logo, award, bonus, remarks" ;

$list[] = iconv('UTF-8', 'GB2312//IGNORE',$tmp);

Directly output the generated CSV to the browser

header ( 'Content-Disposition: attachment; filename =contacts.csv');//If the file name is Chinese, Chinese garbled characters will not appear in IE after urlencode

header ( 'Content-type: application/octet-stream' );

header ( 'Content-Length : '.filesize ('contacts.csv') );//The size of the file

readfile ($file_path);

exit ();

Second, use fgetcsv to import reports

There is one thing to note when using fgetcsv to import reports The place. It is necessary to convert the EXCEL document into CSV format. Note: This is not a simple matter of changing the suffix.

Copy after login


Related labels:
php
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!