未找到类“COM”

2022-08-30 12:07:28

我一直在尝试在我的脚本中打开Word文档,但我收到相同的错误。

 Fatal error: Class 'COM' not found in /Applications/XAMPP/xamppfiles/htdocs/**/**.php on line 3

我的代码:

<?php

$word = new COM("word.application") or die("Unable to instantiate Word"); 

$word->Visible = 1; 


$word->Documents->Open("wordfile.docx");
$temp = $word->Dialogs->Item(228); // returns wdDialogToolsWordCount dialog object
$temp->Execute();   //updates the word count
$numwords = $temp->Words(); //gets the words out of it

echo 'Word count = '.$numwords;

$word->Quit(); 

?>

我试图更改并删除部分中的分号。php.iniCOM

[com]
path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
com.typelib_file = 
allow Distributed-COM calls
com.allow_dcom = true
autoregister constants of a components typlib on com_load()
com.autoregister_typelib = true
register constants casesensitive
com.autoregister_casesensitive = false
show warnings on duplicate constat registrations
com.autoregister_verbose = true 

并且仍然得到相同的错误。

我正在使用Mac上的一个,以及一个基于Linux的网络托管。XAMMP


答案 1

从 PHP 5.4.5 开始,COM 和 DOTNET 不再内置于 php 核心中,您必须在 php 中添加 COM 支持.ini:

[COM_DOT_NET]
extension=php_com_dotnet.dll

否则,您将在错误日志中看到以下内容:致命错误:找不到类“COM”

该扩展包含在Windows的php 5.4.5中。


答案 2

请参阅 COM 要求

COM 函数仅适用于 Windows 版本的 PHP。

.Net 支持需要 PHP 5 和 .Net 运行时。


推荐