1

我正在尝试将 word 文档转换为文本,并为此使用以下代码:

public function executeManoj() { 
$filename='C:\xampp\htdocs\branch.com\web\greenwich-beer-and-jazz-application-form.doc';    
$TXTfilename = $filename . ".txt";

$word = new COM("word.application") or die("Unable to instantiate Word object");
$word->Documents->Open($filename);

// the '2' parameter specifies saving in txt format
$word->Documents[1]->SaveAs($TXTfilename ,2);
$word->Documents[1]->Close(false);
$word->Quit();
$word->Release();
$word = NULL;
unset($word);

$content = file_get_contents($TXTfilename);
//unlink($TXTfilename);
exit;
}

但这导致错误说

“创建 COM 对象 `word.application' 失败:语法无效”....

我在 xammp 中设置了“允许服务与桌面交互”。

我需要在它之前安装任何软件吗?

4

1 回答 1

1

关于这个 PHP 错误,它似乎word.application没有安装在您的机器上。尝试先安装它(不知道在哪里找到它......)。

于 2012-04-20T14:19:49.957 回答