简体   繁体   中英

convert html to ms_word format

如何将“ html代码”转换为Unix OS的php中的.doc或.rtf或其他Office文件格式?

There is a PEAR library to read/write OpenDocument Format which is also supported by MS-Office 2007 (or MS-Office 2000/2003 through plugins). And here is an RTF library for PHP. I don't know of any libraries that can write .doc files directly but that is probably because .doc files are very complicated to write.

You could also write out ODF or OOXML by hand. After all, it's just a zip file with a bunch of XML files in there. PHP has excellent support for manipulating zip files. I haven't read the OOXML spec but it's not that complicated to generate a simple ODF file by hand.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM