首頁  >  文章  >  後端開發  >  php office如何轉 pdf

php office如何轉 pdf

藏色散人
藏色散人原創
2020-08-28 09:13:533498瀏覽

php office轉pdf的方法:先配置“php.ini”,並重新啟動環境;然後配置office元件服務;接著在控制台根節點下,找到【wps…】,右鍵設定屬性;最後編寫程式實作轉換即可。

php office如何轉 pdf

 推薦:《PHP影片教學

一、設定環境

(1)設定php.ini

新增:extension=php_com_dotnet.dll

#com.allow_dcom = true  // 去掉號,改為true

#重啟環境

(2) 安裝:WPS 專業版,或 microsoft  office 2010

(microsoft office 2007 需要安裝加載項:Microsoft Save as PDF) 

(3)設定office元件服務

        按win R 快速鍵進入運作選單,輸入Dcomcnfg 

        進入:     [組件服務] ——【我的電腦設定- [我的電腦配置] - [DCOMs】或[Microsoft Wrord 97-2003文件]

        如果未找到【wps…】或(Microsoft Wrord 97-2003文件):

     c 

        輸入:mmc -32

#        [檔案]-[新增或移除管理單元]-[元件服務](從可用管理單元,新增至所選管理單元,點選:確定)

        新增完以後,在控制台根節點下,找到【wps…】或[Microsoft Wrord 97-2003文件],右鍵設定屬性,設定「標識」為:互動式使用者(

還有安全裡面的設定可以看其他文章的設定)

 

 

# #註:我開始 

選擇互動式使用者

  : 會出現我登入遠端伺服器一切正常,如果退出遠端伺服器實例化元件就報錯,最後選擇了下列使用者,填寫了管理員用戶和密碼才正常可用.二、寫程式

<?php

word2pdf(); function word2pdf()
{    $filenamedoc = dirname(__FILE__)."/index.docx";    $filenamepdf = dirname(__FILE__)."/index.pdf";    $dd = $word = new COM("KWPS.Application") or die ("Could not initialise Object.");    // 或者 $dd = $word = new COM("Word.Application") or die ("Could not initialise Object.");
    // 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($filenamedoc);    // save it as word 2003
    // convert word 2007-2013 to PDF

    //判断要生成的文件名是否存在
    if(file_exists($filenamepdf)) {        //存在就删除
        unlink ($filenamepdf);
    }    $word->ActiveDocument->ExportAsFixedFormat($filenamepdf, 17, false, 0, 0, 0, 0, 7, true, true, 2, true, true, false);    // quit the Word process
    $word->Quit(false);    // clean up
    unset($word);    if(!function_exists(&#39;read_pdf&#39;)) {        header(&#39;Content-type: application/pdf&#39;);        header(&#39;filename=&#39;.$filenamepdf);        readfile($filenamepdf);
        read_pdf(&#39;Python_study.pdf&#39;);
    }    echo &#39;ok&#39;;
}?>

 

if(!function_exists(&#39;read_pdf&#39;)) {  function read_pdf($file) {    if(strtolower(substr(strrchr($file,&#39;.&#39;),1)) != &#39;pdf&#39;) {      echo &#39;文件格式不对.&#39;;      return;
    }    if(!file_exists($file)) {      echo &#39;文件不存在&#39;;      return;
    }    header(&#39;Content-type: application/pdf&#39;);    header(&#39;filename=&#39;.$file);    readfile($file);
  }
}

以上是php office如何轉 pdf的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn