php生成导出Word、Excel、PowerPoint插件
国外的一个插件,赞!
官网及下载地址:
phpWord: http://phpword.codeplex.com/
phpExcel:http://phpexcel.codeplex.com/
phpPowerPoint:http://phppowerpoint.codeplex.com/
实例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
require_once
'../PHPWord.php'
;
// New Word Document
$PHPWord
=
new
PHPWord();
// New portrait section
$section
=
$PHPWord
->createSection();
// Add table
$table
=
$section
->addTable();
for
(
$r
= 1;
$r
<= 10;
$r
++) {
// Loop through rows
// Add row
$table
->addRow();
for
(
$c
= 1;
$c
<= 5;
$c
++) {
// Loop through cells
// Add Cell
$table
->addCell(1750)->addText(
"Row $r, Cell $c"
);
}
}
// Save File
$objWriter
= PHPWord_IOFactory::createWriter(
$PHPWord
,
'Word2007'
);
$objWriter
->save(
'BasicTable.docx'
);
?>
|
使用及注意:
1、初次使用可能会遇到:
Fatal error: Class 'ZipArchive' not found的解决办法
解决办法:
在php.ini文件中,将extension=php_zip.dll前面的分号“;”去除; (如果没有,请添加extension=php_zip.dll此行并确保php_zip.dll文件存在相应的目录)
2、好像只有phpExcel可以导出excel2003/2007;
phpWord和phpPowerPoint只能导出word2007,PowerPoint2007,不支持2003。
三个打包下载(亲自整理):
http://down.51cto.com/data/1031092
本文转自许琴 51CTO博客,原文链接:http://blog.51cto.com/xuqin/1335227,如需转载请自行联系原作者