以2003格式保存文档

时间:2014-05-27 16:21:41

标签: phpword

http://phpword.codeplex.com/documentation包含一个如何以Word 2007 docx格式保存的示例:

$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
$objWriter->save('helloWorld.docx');

是否可以以Word 2003格式保存文档?如果没有可能的其他库?

1 个答案:

答案 0 :(得分:1)

该项目已转移到Github:https://github.com/PHPOffice/PHPWord/。实际上,reading a file Word 97-2003在管道中。因此,我们将在此之后实现Word97写入功能。

其他:

相关问题