Php reading excel file example sharing (update and modify excel) _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
Share an example of php reading an excel file (update and modify an excel file ). Copy the code as follows: example; $ txttest; instantiate 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 ');

The http://www.bkjia.com/PHPjc/736841.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/736841.htmlTechArticle code is as follows: // The Template directory $ dir = $ DOCUMENT_ROOT. '/backoffice/admin/oemcheck/'; $ templateName = '1.xlsx '; $ outputFileName = 'templat.xlsx'; $ txt = 'test'; // instantiate...

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.