phpword

saving a document in the word 2003 format


http://phpword.codeplex.com/documentation includes an example of how to save in the Word 2007 docx format:

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

Is it possible to save a document in the Word 2003 format instead? If not are there other libraries that might?


Solution

  • The project has been transfered to Github : https://github.com/PHPOffice/PHPWord/. Actually, reading a file Word 97-2003 is in the pipe. So we will implement Word97 writing feature, after that.

    Else :