Codeigniter + PHPExcel to export data to an Excel file

Source: Internet
Author: User
Tags codeigniter
PHPExcel is a PHP class library used to operate OfficeExcel documents. Codeigniter is a powerful PHP framework. The combination of the two can play a very good effect. if you need it, you can refer to the CI framework.

PHPExcel is a PHP class library used to operate OfficeExcel documents. it is based on Microsoft's OpenXML standard and PHP language. You can use it to read and write workbooks of different formats. Codeigniter is a powerful PHP framework. The combination of the two can achieve great results!

1. preparations

Download PHPExcel: http://phpexcel.codeplex.com
This is a powerful Excel database. only the Excel file export function is demonstrated here. most of the functions may not be needed.

2. install PHPExcel to Codeigniter

1) decompress the contents in the Classes folder of the compressed package to the application \ libraries \ directory. the directory structure is as follows:
-- Application \ libraries \ PHPExcel. php
-- Application \ libraries \ PHPExcel (folder)
2) modify the application \ libraries \ PHPExcel \ IOFactory. php file
-- Change the class name from PHPExcel_IOFactory to IOFactory and follow the CI class naming rules.
-- Change the constructor to public.

3. after the installation is complete, write a Controller for exporting the excel file)

The code is as follows:
The code is as follows: ClassTable_exportextendsCI_Controller {
Function _ construct ()
{
Parent: _ construct ();
// Hereyoushouldaddsomesortofuservalidation
// Topreventstrangersfrompullingyourtabledata
}
Functionindex ($ table_name)
{
$ Query = $ this-> db-> get ($ table_name );
If (! $ Query)
Returnfalse;
// StartingthePHPExcellibrary
$ This-> load-> library ('phpexcel ');
$ This-> load-> library ('phpexcel/IOFactory ');
$ ObjPHPExcel = newPHPExcel ();
$ ObjPHPExcel-> getProperties ()-> setTitle ("export")-> setDescription ("none ");
$ ObjPHPExcel-> setActiveSheetIndex (0 );
// Fieldnamesinthefirstrow
$ Fields = $ query-> list_fields ();
$ Col = 0;
Foreach ($ fieldsas $ field)
{
$ ObjPHPExcel-> getActiveSheet ()-> setCellValueByColumnAndRow ($ col, 1, $ field );
$ Col ++;
}
// Fetchingthetabledata
$ Row = 2;
Foreach ($ query-> result () as $ data)
{
$ Col = 0;
Foreach ($ fieldsas $ field)
{
$ ObjPHPExcel-> getActiveSheet ()-> setCellValueByColumnAndRow ($ col, $ row, $ data-> $ field );
$ Col ++;
}
$ Row ++;
}
$ ObjPHPExcel-> setActiveSheetIndex (0 );
$ ObjWriter = IOFactory: createWriter ($ objPHPExcel, 'excel5 ');
// Sendingheaderstoforcetheusertodownloadthefile
Header ('content-Type: application/vnd. ms-excel ');
Header ('content-Disposition: attachment; filename = "Products _ '. date ('dmy'). '.xls "');
Header ('cache-Control: max-age = 0 ');
$ ObjWriter-> save ('php: // output ');
}
}

4. test

When you add a table named products to the database, you can access http://www.yoursite.com/table_export/index/productsto export the excelfile.

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.