|
phpExcel是用來操作OfficeExcel文檔的一個(gè)php類庫,它基于微軟的OpenXML標(biāo)準(zhǔn)和php語言。可以使用它來讀取、寫入不同格式的電子表格。而Codeigniter是一個(gè)功能強(qiáng)大的php框架。二者結(jié)合就能起到非常棒的效果啦!
1.準(zhǔn)備工作
下載phpExcel:http://phpexcel.codeplex.com
這是個(gè)強(qiáng)大的Excel庫,這里只演示導(dǎo)出Excel文件的功能,其中的大部分功能可能都用不著。
2.安裝phpExcel到Codeigniter
1)解壓壓縮包里的Classes文件夾中的內(nèi)容到application/libraries/目錄下,目錄結(jié)構(gòu)如下:
--application/libraries/phpExcel.php
--application/libraries/phpExcel(文件夾)
2)修改application/libraries/phpExcel/IOFactory.php文件
--將其類名從phpExcel_IOFactory改為IOFactory,遵從CI類命名規(guī)則。
--將其構(gòu)造函數(shù)改為public
3.安裝完畢,寫一個(gè)導(dǎo)出excel的控制器(Controller)
代碼如下:
復(fù)制代碼 代碼如下:<?php
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.測(cè)試
加入數(shù)據(jù)庫有表名為products,此時(shí)可以訪問http://www.yoursite.com/table_export/index/products導(dǎo)出Excel文件了。
php技術(shù):Codeigniter+PHPExcel實(shí)現(xiàn)導(dǎo)出數(shù)據(jù)到Excel文件,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。