15

我正在尝试使用 PHPWord 生成 word 文档。并且可以成功生成文档。但是有一个问题是我生成的word文档会保存在服务器上。我怎样才能使它可以立即下载?

样本:

$PHPWord = new PHPWord();
//Searching for values to replace
$document = $PHPWord->loadTemplate('doc/Temp1.docx');
$document->setValue('Name', $Name);
$document->setValue('No', $No);
$document->save('php://output'); //it auto save into my 'doc' directory.

我如何链接到标题以下载它,如下所示:

header("Content-Disposition: attachment; filename='php://output'"); //not sure how to link this filename to the php://output..

好心提醒。

4

7 回答 7

18

php://output是一个只写流,它写入您的屏幕(如echo)。

因此,$document->save('php://output');不会将文件保存在服务器上的任何位置,它只会将其回显。

似乎, $document->save, 不支持流包装器,所以它确实创建了一个名为"php://output". 尝试使用另一个文件名(我建议使用临时文件,因为您只想将其回显)。

$temp_file = tempnam(sys_get_temp_dir(), 'PHPWord');
$document->save($temp_file);

在 中header,该filename字段是 PHP 告诉浏览器文件的名称,它不必是服务器上文件的名称。这只是浏览器将其保存为的名称。

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

所以,把它们放在一起:

$PHPWord = new PHPWord();
//Searching for values to replace
$document = $PHPWord->loadTemplate('doc/Temp1.docx');
$document->setValue('Name', $Name);
$document->setValue('No', $No);
// // save as a random file in temp file
$temp_file = tempnam(sys_get_temp_dir(), 'PHPWord');
$document->save($temp_file);

// Your browser will name the file "myFile.docx"
// regardless of what it's named on the server 
header("Content-Disposition: attachment; filename='myFile.docx'");
readfile($temp_file); // or echo file_get_contents($temp_file);
unlink($temp_file);  // remove temp file
于 2012-07-13T18:25:29.137 回答
10
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');

$filename = 'MyFile.docx';

$objWriter->save($filename);

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.$filename);
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
flush();
readfile($filename);
unlink($filename); // deletes the temporary file
exit;
于 2013-05-22T09:42:39.023 回答
5

这对我有用:

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

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

$objWriter->save("php://output");
于 2017-10-18T18:32:35.343 回答
3

现在是 0.13.0 版 https://github.com/PHPOffice/PHPWord

<?
require_once "../include/PHPWord-develop/bootstrap.php";

$templateProcessor = new \PhpOffice\PhpWord\TemplateProcessor('template.docx');

$templateProcessor->setValue('var01', 'Sun');
$templateProcessor->setValue('var02', 'Mercury');

//#####################################################
// Save File
//#####################################################
//#####################################################
header("Content-Disposition: attachment; filename='output01.docx'");
  $templateProcessor->saveAs('php://output');
//#####################################################
//#####################################################
?>
于 2017-08-25T04:51:06.167 回答
1

抱歉,这是后来出现的。我在尝试解决同样的问题时偶然发现了这一点。我能够使用以下方法在 Laravel 5 上运行它:

    $file_dir = $template_upload_dir.DIRECTORY_SEPARATOR.'filename.docx';
    $tags = array();
    if (file_exists($file_dir)) {
        $templateProcessor = new TemplateProcessor($file_dir);
        $tags = $templateProcessor->getVariables();
        $replace = array(''); 

        $templateProcessor->setValue($tags, $replace);
        $save_file_name = $fullname.'-'.$inv_code.'-'.date('YmdHis').'.docx';
        $templateProcessor->saveAs($save_file_name);

        return response()->download($save_file_name)->deleteFileAfterSend(true);
    }

希望它可以帮助某人!

于 2017-08-11T03:29:45.710 回答
1
// Save File
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
header("Content-Disposition: attachment; filename='myFile.docx'");
$objWriter->save("php://output");
于 2017-08-19T22:27:14.627 回答
1

基于@user3214824 答案的 Laravel 简单解决方案。

// ...    
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($PHPWord, 'Word2007');
$doc_name = 'fileName.docx';
$objWriter->save($doc_name); // saving in the public path just for testing

return response()->download(public_path($doc_name))->deleteFileAfterSend(true);
于 2018-12-11T14:09:19.417 回答