Home > Backend Development > PHP Tutorial > Excel 2007 official download free full version PHP settings HTTP header information export Excel report

Excel 2007 official download free full version PHP settings HTTP header information export Excel report

WBOY
Release: 2016-07-29 08:37:49
Original
1555 people have browsed it

There is no need to use the fputcsv function to generate reports. Just set the corresponding format and HTTPheader information to generate the report. Attached code:

<?php

header("Content-type: application/vnd.ms-excel; charset=utf-8");
header("Content-Disposition: attachment; filename=excel.xls");

$data  = "分类销售统计\t\n";
$data .= "排名\t产品大类\t销售额(万)\t销售占比\t单品数量\n";

if (EC_CHARSET == 'utf-8')
{
      echo ecs_iconv(EC_CHARSET, 'GB2312', $data);
}
else
{
      echo $data;
}
?>
Copy after login

Note: The character conversion step can be omitted according to actual needs.

Original link: http://woqilin.blogspot.com/2016/06/php-http-excel.html

The above introduces the Excel 2007 official download free full version PHP setting HTTP header information to export Excel reports, including the excel 2007 official download free full version content, I hope it will be helpful to friends who are interested in PHP tutorials.

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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template