我正在尝试使用 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..
好心提醒。