我正在使用PHP的COM类来计算ms word文件中的单词数。它在我当地运行良好。但是,当我在服务器上运行它时,它会给出错误。
致命错误:第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);
}
}
?>
它让我对当地人有所了解。但是在服务器上它会给出错误。请帮帮我,我该怎么办?
答案 0 :(得分:0)
您确定在您的服务器上这个组件(“word.application”)是否已存在并包含在您的php文档中?