
PHPExcel 是相当强大的 MS Office Excel 文档生成类库,当需要输出比较复杂格式数据的时候,PHPExcel 是个不错的选择。不过其使用方法相对来说也就有些繁琐。列举以记之。
view plaincopy to clipboardprint? <?
//设置PHPExcel类库的include path set_include_path('.'. PATH_SEPARATOR .
'D:\Zeal\PHP_LIBS' . PATH_SEPARATOR . get_include_path())/**
* 以下是使用示例,对于以 //// 开头的行是不同的可选方式,请根据实际需要
* 打开对应行的注释。
* 如果使用 Excel5 ,输出的内容应该是GBK编码。
*/
require_once 'PHPExcel.php'
// uncomment
////require_once 'PHPExcel/Writer/Excel5.php'// 用于其他低版本xls // or
////require_once 'PHPExcel/Writer/Excel2007.php'// 用于 excel-2007 格式
// 创建一个处理对象实例 $objExcel = new PHPExcel()
// 创建文件格式写入对象实例, uncomment
////$objWriter = new PHPExcel_Writer_Excel5($objExcel)// 用于其他版本格式 // or
////$objWriter = new PHPExcel_Writer_Excel2007($objExcel)// 用于 2007 格式
//$objWriter->setOffice2003Compatibility(true)
//*************************************
//设置文档基本属性
$objProps = $objExcel->getProperties()$objProps->setCreator("Zeal Li")$objProps->setLastModifiedBy("Zeal Li")
$objProps->setTitle("Office XLS Test Document")$objProps->setSubject("Office XLS Test Document, Demo")$objProps->setDescription("Test document, generated by PHPExcel.")
$objProps->setKeywords("office excel PHPExcel")$objProps->setCategory("Test")
//*************************************
//设置当前的sheet索引,用于后续的内容 *** 作。
//一般只有在使用多个sheet的时候才需要显示调用。
//缺省情况下,PHPExcel会自动创建第一个sheet被设置SheetIndex=0 $objExcel->setActiveSheetIndex(0)
$objActSheet = $objExcel->getActiveSheet()
//设置当前活动sheet的名称
$objActSheet->setTitle('测试Sheet')
//************************************* //设置单元格内容 //
//由PHPExcel根据传入内容自动判断单元格内容类型
$objActSheet->setCellValue('A1', '字符串内容') // 字符串内容 $objActSheet->setCellValue('A2', 26) // 数值 $objActSheet->setCellValue('A3', true) // 布尔值 $objActSheet->setCellValue('A4', '=SUM(A2:A2)')// 公式
//显式指定内容类型
$objActSheet->setCellValueExplicit('A5', '847475847857487584', PHPExcel_Cell_DataType::TYPE_STRING)
//合并单元格
$objActSheet->mergeCells('B1:C22')
//分离单元格
$objActSheet->unmergeCells('B1:C22')
//************************************* //设置单元格样式 //
//设置宽度
$objActSheet->getColumnDimension('B')->setAutoSize(true)$objActSheet->getColumnDimension('A')->setWidth(30)
$objStyleA5 = $objActSheet->getStyle('A5')
//设置单元格内容的数字格式。 //
//如果使用了 PHPExcel_Writer_Excel5 来生成内容的话,
//这里需要注意,在 PHPExcel_Style_NumberFormat 类的 const 变量定义的
//各种自定义格式化方式中,其它类型都可以正常使用,但当setFormatCode
//为 FORMAT_N
//修改 PHPExcel_Writer_Excel5_Format 类源代码中的 getXf($style) 方法,
//在 if ($this->_BIFF_version == 0x0500) { (第363行附近)前面增加一 //行代码:
//if($ifmt === '0') $ifmt = 1//
//设置格式为PHPExcel_Style_NumberFormat::FORMAT_NUMBER,避免某些大数字
//被使用科学记数方式显示,配合下面的 setAutoSize 方法可以让每一行的内容
//都按原始内容全部显示出来。 $objStyleA5
->getNumberFormat()
->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_NUMBER)
UMBER 的时候,实际出来的效果被没有把格式设置为"0"。需要
//修改 PHPExcel_Writer_Excel5_Format 类源代码中的 getXf($style) 方法,
//在 if ($this->_BIFF_version == 0x0500) { (第363行附近)前面增加一 //行代码:
//if($ifmt === '0') $ifmt = 1//
//设置格式为PHPExcel_Style_NumberFormat::FORMAT_NUMBER,避免某些大数字
//被使用科学记数方式显示,配合下面的 setAutoSize 方法可以让每一行的内容
//都按原始内容全部显示出来。 $objStyleA5
->getNumberFormat()
->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_NUMBER)
//设置字体
$objFontA5 = $objStyleA5->getFont()$objFontA5->setName('Courier New')
$objFontA5->setSize(10)$objFontA5->setBold(true)
$objFontA5->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE)
$objFontA5->getColor()->setARGB('FF999999')
//输出内容 //
$outputFileName = "output.xls"//到文件
////$objWriter->save($outputFileName)//or //到浏览器
////header("Content-Type: application/force-download")////header("Content-Type: application/octet-stream")////header("Content-Type: application/download")
////header('Content-Disposition:inlinefilename="'.$outputFileName.'"')
////header("Content-Transfer-Encoding: binary")////header("Expires: Mon, 26 Jul 1997 05:00:00 GMT")
////header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT")
////header("Cache-Control: must-revalidate, post-check=0, pre-check=0")
////header("Pragma: no-cache")////$objWriter->save('php://output')?>
<?php
error_reporting(E_ALL)//开启错误
set_time_limit(0)//脚本不超时
date_default_timezone_set('Europe/London')//设置时间
/** Include path **/
set_include_path(get_include_path() . PATH_SEPARATOR . '/')//设置环境变量
/** PHPExcel_IOFactory */
include 'PHPExcel/IOFactory.php'
//$inputFileType = 'Excel5' //这个是读 xls的
$inputFileType = 'Excel2007'//这个是计xlsx的
//$inputFileName = './sampleData/example2.xls'
$inputFileName = './sampleData/book.xlsx'
echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />'
$objReader = PHPExcel_IOFactory::createReader($inputFileType)
$objPHPExcel = $objReader->load($inputFileName)
/*
$sheet = $objPHPExcel->getSheet(0)
$highestRow = $sheet->getHighestRow()//取得总行数
$highestColumn = $sheet->getHighestColumn()//取得总列
*/
$objWorksheet = $objPHPExcel->getActiveSheet()//取得总行数
$highestRow = $objWorksheet->getHighestRow()//取得总列数
echo 'highestRow='.$highestRow
echo "<br>"
$highestColumn = $objWorksheet->getHighestColumn()
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn)//总列数
echo 'highestColumnIndex='.$highestColumnIndex
echo "<br />"
$headtitle=array()
for ($row = 1$row <= $highestRow$row++)
{
$strs=array()
//注意highestColumnIndex的列数索引从0开始
for ($col = 0$col <$highestColumnIndex$col++)
{
$strs[$col] =$objWorksheet->getCellByColumnAndRow($col, $row)->getValue()
}
$info = array(
'word1'=>"$strs[0]",
'word2'=>"$strs[1]",
'word3'=>"$strs[2]",
'word4'=>"$strs[3]",
)
//在这儿,你可以连接,你的数据库,写入数据库了
print_r($info)
echo '<br />'
}
?>
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)