Php update and modify content in excel instance code _ php instance

Source: Internet
Author: User
This article describes how to update and modify the content instance code in excel using php. For more information, see The Code is as follows:


// Template storage directory
$ Dir = $ DOCUMENT_ROOT. '/backoffice/admin/oemcheck /';

$ TemplateName = '1.xlsx ';
$ OutputFileName = 'template.xlsx ';
$ Txt = 'test ';

// Instantiate the Excel Reading Class
$ PHPReader = new PHPExcel_Reader_Excel2007 ();
If (! $ PHPReader-> canRead ($ dir. $ templateName )){
$ PHPReader = new PHPExcel_Reader_Excel5 ();
If (! $ PHPReader-> canRead ($ dir. $ templateName )){
Echo 'unrecognized Excel file! ';
Return false;
}
}
// Read Excel
$ PHPExcel = $ PHPReader-> load ($ dir. $ templateName );
// Read Worksheet 1
$ CurrentSheet = $ PHPExcel-> getSheet (0 );

$ CurrentSheet-> setCellValue ('b13', iconv ('gbk', 'utf-8', $ txt); // header assignment //
// Instantiate the Excel writing class
$ PHPWriter = new PHPExcel_Writer_Excel2007 ($ PHPExcel );
Ob_start ();
Header ("Content-Type: application/force-download ");
Header ("Content-Type: application/octet-stream ");
Header ("Content-Type: application/download ");
Header ('content-Disposition: attachment; filename = "'. $ outputFileName.'" '); // output Template Name
Header ("Content-Transfer-Encoding: binary ");
Header ("Last-Modified:". gmdate ("D, d m y h: I: s"). "GMT ");
Header ('pragma: public ');
Header ('expires: 30 ');
Header ('cache-Control: public ');
$ PHPWriter-> save ('php: // output ');

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.