我正在使用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
任何人都知道如何在运行中将文件输出到浏览器?