1

我想读取 Doc 文件的内容或将 doc 文件转换为 Docx

我使用了 COM 对象,但它不起作用,因为我有基于 linux 的服务器。

我也尝试过使用 shell_exec 命令,但它不起作用,因为 shared server 上没有提供任何功能。

有没有api?这样我就可以使用 Docx 转换 Doc 文件

4

1 回答 1

0

If you want to use PHP, try out PHPWord.

There's an example on how to convert from .doc to .docx on this page:

require_once '../PHPWord.php';

$PHPWord = new PHPWord();

$document = $PHPWord->loadTemplate('Excel2003.doc');

// Save File

$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');

$objWriter->save('Excel2007.docx');

于 2012-10-31T21:58:05.500 回答