composer phpword

  1. 安装composer
  • 下载composer
    curl -sS https://getcomposer.org/installer | php
  • 将composer.phar文件移动到bin目录以便全局使用composer命令
    mv composer.phar /usr/local/bin/composer
  • 切换国内源
    composer config -g repo.packagist composer https://packagist.phpcomposer.com
  1. 安装phpword
    composer require "phpoffice/phpword"

  2. 使用phpword

  • 自动加载
    安装好phpword后,新建一个php文档,引入autoload.php。
    require 'vendor/autoload.php';
  • 实例化
    实例化并新增一个空白页。
    $phpWord = new \PhpOffice\PhpWord\PhpWord(); $section = $phpWord->addSection();
  • 添加文字内容
    向空白页添加文字内容,可以设置文字的样式,包括字体、颜色、字号、粗体等等。
    $fontStyle = [ 'name' => 'Microsoft Yahei UI', 'size' => 20, 'color' => '#ff6600', 'bold' => true ]; $textrun = $section->addTextRun(); $textrun->addText('你好,这是生成的Word文档。 ', $fontStyle);
  • 链接
    可以为Word文档中的文字添加用于点击跳转的链接。
    $section->addLink('https://www.helloweba.net', '欢迎访问Helloweba', array('color' => '0000FF', 'underline' => \PhpOffice\PhpWord\Style\Font::UNDERLINE_SINGLE)); $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('新的一页.');
  • 表格
    增加一个基础表格,可以设置表格的样式。
    $header = array('size' => 16, 'bold' => true); $rows = 10; $cols = 5; $section->addText('Basic table', $header); $table = $section->addTable(); for ($r = 1; $r <= 8; $r++) { $table->addRow(); for ($c = 1; $c <= 5; $c++) { $table->addCell(1750)->addText("Row {$r}, Cell {$c}"); } }
  • 生成Word文档
    如果你想生成word文档放在服务器上,可以使用:
    $objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007'); $objWriter->save('hellwoeba.docx');
  • 下载Word文档
    如果你想直接下载Word文档,不在服务器上保存的话,可以使用:
    $file = 'test.docx'; header("Content-Description: File Transfer"); header('Content-Disposition: attachment; filename="' . $file . '"'); header('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document'); header('Content-Transfer-Encoding: binary'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Expires: 0'); $xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007'); $xmlWriter->save("php://output");
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值