ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
<?php function word2pdf($lastfnamedoc,$lastfnamepdf) { $word = new COM("Word.Application") or die ("没有安装OFFICE或者联系网站管理员"); // set it to 1 to see the MS Word window (the actual opening of the document) $word->Visible = 0; // recommend to set to 0, disables alerts like "Do you want MS Word to be the default .. etc" $word->DisplayAlerts = 0; // open the word 2007-2013 document // $word->Documents->Open('3.docx'); // $wordname='D:/www/fa/3.doc'; $word->Documents->Open($lastfnamedoc); // save it as word 2003 // $word->ActiveDocument->SaveAs('4.doc'); // convert word 2007-2013 to PDF // $pdfname='D:/www/fa/3.pdf'; $word->ActiveDocument->ExportAsFixedFormat($lastfnamepdf, 17, false, 0, 0, 0, 0, 7, true, true, 2, true, true, false); // quit the Word process $word->Quit(false); // clean up unset($word); } //这里面要用绝对地址。已经测试好了 word2pdf('F:\a.doc','F:\ss.pdf'); ?>