【发布时间】:2018-06-28 19:58:26
【问题描述】:
我的 PHPWord 实现有问题。我正在构建一个功能,允许用户将内容下载到 word 并为此使用 PHPWord。但是,下载文档后,打开时出现错误:
office open XML 文件无法打开,因为内容有问题
在接受恢复程序后,我只能预览 word 文件的内容,我认为这对用户不友好。
这是我的 PHP 代码。
<?php
require_once '../assets/vendor/autoload.php';
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
\PhpOffice\PhpWord\Shared\Html::addHtml($section, "Content");
header('Content-Description: File Transfer');
header("Content-Type: application/docx");
header("Content-Transfer-Encoding: binary");
header('Content-Disposition: attachment;filename="test.docx"');
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007');
$objWriter->save('test.docx');
?>
【问题讨论】: