下载带有phpword的文件



我正在尝试使用phpword插件将一些HTML转换为.docx

但是,当我下载文件时,我只会弄乱的是: PK########�^uK�j�#c###!#######[Content_Types].xml���N�0#E�|E�-Jܲ@#5��#*Q>5'��_�8}�=��D#AC�v#)��s�G�G��5� "j�J6,#,#'��nQ���s~�2L�)a���m#�d|5�m#F�#K�L)�s�r V�#8�T>Z��5.x#�C,��

这是我的代码:

<?php
error_reporting (E_ALL | E_STRICT);
@ini_set ('display_errors', 'on');
require_once '../../../../vendor/autoload.php';
$my_content = $_POST['html_content'];
$phpWord = new PhpOfficePhpWordPhpWord();
$section = $phpWord->addSection();
PhpOfficePhpWordSharedHtml::addHtml($section, $my_content);
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachement;filename="teste.docx"');
$objWriter = PhpOfficePhpWordIOFactory::createWriter($phpWord, 'Word2007');
$objWriter->save('php://output');
?>

我已经搜索了网络,但没有任何线索如何继续。

只需使用内置功能如下

$phpWord->save('teste.docx', 'Word2007', true);

最后一个参数将强制下载产生的文件。

attachement;filename="teste.docx"之间添加一个空间,因此标头将为

header('Content-Disposition: attachment; filename="teste.docx"');

并添加以下标头:

header('Content-Description: File Transfer');

update

您可以尝试将文件保存到磁盘并从中发送,我也会出现这样的问题,它为我解决了:

$objWriter = PhpOfficePhpWordIOFactory::createWriter($phpWord, 'Word2007');
$objWriter->save($filePath);
header("Expires: Mon, 1 Apr 1974 05:00:00 GMT");
header("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header('Content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document;');
header("Content-Disposition: attachment; filename=file.docx");
readfile($filePath);
unlink($filePath);

最新更新