我正在尝试将 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 中设置了“允许服务与桌面交互”。
我需要在它之前安装任何软件吗?