This example below may work, but in order to get the expected download behavior in all browsers, the title Content-Typeshould be correct for Word2007. You may need additional headers for the correct output.
:
$filename = "YOUR_Filename.docx";
header( "Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document" );
header( 'Content-Disposition: attachment; filename='.$filename );
$h2d_file_uri = tempnam( "", "htd" );
$objWriter = PHPWord_IOFactory::createWriter( $phpword_object, "Word2007" );
$objWriter->save( "php://output" );
@jamsandwich: Word 2007 application/vnd.openxmlformats-officedocument.wordprocessingml.document.
Microsoft