我正在使用 php 的 COM 类来计算 ms 字文件中的字数。它在我的本地运行良好。但是当我在服务器上运行它时,它会给出错误。
致命错误:在第 33 行的 /home/classics/public_html/filecount/index.php 中找不到类“COM”
虽然我也不包括本地的 COM 类,而且我没有这种类型的类,但我只是像这样使用它:
<?php
if(isset($_POST['submit'])){
$file = $_FILES['docfile']['name'];
$file = str_replace(" ","_",$file);
$ranname = mt_rand(100,10000);
//$file = file_get_contents($file);
$ext = pathinfo($file, PATHINFO_EXTENSION);
$target ="uploads/";
if(!is_dir($target))
{
mkdir($target, 0755);
}
move_uploaded_file($_FILES['docfile']['tmp_name'],$target.$ranname.".docx");
if($ext == "doc" || $ext == "docx"){
$word = new COM("word.application") or die("Unable to instantiate Word");
$word->Visible = 1;
$word->Documents->Open("/filecount/".$target.$ranname.".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();
//unlink("uploads/".$file);
}
}
?>
它给了我对本地的计数。但在服务器上它给出了错误。请帮帮我我该怎么办?