当前位置:首页 > PHP教程 > php应用 > 列表

使用PHPWord生成word文档的方法详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-25 14:26:59 浏览: 评论:0 

这篇文章主要介绍了使用PHPWord生成word文档的方法,结合实例形式详细分析了PHPWord生成word文档的具体操作步骤与相关使用技巧,需要的朋友可以参考下。

本文实例讲述了使用PHPWord生成word文档的方法,分享给大家供大家参考,具体如下:

有时我们需要把网页内容保存为Word文档格式,以供其他人员查看和编辑。PHPWord是一个用纯PHP编写的库,使用PHPWord可以轻松处理word文档内容,生成你想要的word文档。

下载源码

安装

我们使用Composer 来安装PHPWord。

composer require phpoffice/phpword

如何使用

自动加载

安装好phpword后,新建一个php文档,引入autoload.php。

require 'vendor/autoload.php';

实例化

实例化并新增一个空白页。

$phpWord = new \PhpOffice\PhpWord\PhpWord();

$section = $phpWord->addSection();

添加文字内容

向空白页添加文字内容,可以设置文字的样式,包括字体、颜色、字号、粗体等等。

  1. $fontStyle = [ 
  2.   'name' => 'Microsoft Yahei UI'
  3.   'size' => 20, 
  4.   'color' => '#ff6600'
  5.   'bold' => true 
  6. ]; 
  7. $textrun = $section->addTextRun(); 
  8. $textrun->addText('你好,这是生成的Word文档。 '$fontStyle); 

链接

可以为Word文档中的文字添加用于点击跳转的链接。

  1. $section->addLink('https://www.helloweba.net''欢迎访问Helloweba'array('color' => '0000FF''underline' => \PhpOffice\PhpWord\Style\Font::UNDERLINE_SINGLE)); 
  2. $section->addTextBreak(); 

图片

可以在word中添加图片,如图片地址logo.png,尺寸为64x64。图片源也可以是远程图片。

$section->addImage('logo.png', array('width'=>64, 'height'=>64));

页眉

为Word文档添加页眉。

$header = $section->addHeader();

$header->addText('Subsequent pages in Section 1 will Have this!');

页脚

为word文档添加页脚,页脚内容是页码,格式居中。

$footer = $section->addFooter();

$footer->addPreserveText('Page {PAGE} of {NUMPAGES}.', null, array('alignment' => \PhpOffice\PhpWord\SimpleType\Jc::CENTER));

增加一页

继续增加一页,加入内容。

$section = $phpWord->addSection();

$section->addText('新的一页.');

表格

增加一个基础表格,可以设置表格的样式。

  1. $header = array('size' => 16, 'bold' => true); 
  2. $rows = 10; 
  3. $cols = 5; 
  4. $section->addText('Basic table'$header); 
  5. $table = $section->addTable(); 
  6. for ($r = 1; $r <= 8; $r++) { 
  7.   $table->addRow(); 
  8.   for ($c = 1; $c <= 5; $c++) { 
  9.     $table->addCell(1750)->addText("Row {$r}, Cell {$c}"); 
  10.   } 

生成Word文档

如果你想生成word文档放在服务器上,可以使用:

$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');

$objWriter->save('hellwoeba.docx');

下载Word文档

如果你想直接下载Word文档,不在服务器上保存的话,可以使用:

  1. $file = 'test.docx'
  2. header("Content-Description: File Transfer"); 
  3. header('Content-Disposition: attachment; filename="' . $file . '"'); 
  4. header('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document'); 
  5. header('Content-Transfer-Encoding: binary'); 
  6. header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 
  7. header('Expires: 0'); 
  8. $xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord'Word2007'); 
  9. $xmlWriter->save("php://output"); 

上述代码会强制浏览器下载为word文档。

更多有关PHPWord的内容,请参考PHPWord文档:http://phpword.readthedocs.org/.

Tags: PHPWord生成word文档

分享到: