PHP Word,将生成的文件作为输出发送到浏览器,而不将其保存在光盘上

时间:2015-11-23 13:50:54

标签: php phpword

我正在使用PHP Word& htmltodocx_converter创建word文档,一切正常,但我只需要一个例子,说明如何将文件发送到浏览器下载而不保存在光盘上。我看到的所有示例都将文件保存到光盘中:

// Save File
$h2d_file_uri = tempnam( "", "htd" );
$objWriter = PHPWord_IOFactory::createWriter( $phpword_object, "Word2007" );
$objWriter->save( $filename ); // At this line, I would like to output the file to the browser

任何人都知道如何在运行中将文件输出到浏览器?

0 个答案:

没有答案