在执行php上传转换word为html时,时常会卡死,文件上传不上去
function word2html($wordname,$htmlname)
{
$word = new COM("word.application") or die("Unable to instanciate Word");
$word->Visible = 1;
$word->Documents->Open($wordname);
$word->Documents[1]->SaveAs($htmlname,8);
$word->Quit();
$word = null;
unset($word);
}
word2html('D:/www/test/6.docx','D:/www/test/6.html');
执行多次以后我发现是因为
$word->Documents->Open($wordname);
上面这句,遇到这种情况以后,需要的服务器端的任务管理器的进程服务中,
关闭winword.exe进程,或者把文件改名,才能转换成功。