溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php office轉(zhuǎn)pdf的方法

發(fā)布時(shí)間:2020-08-29 09:37:22 來源:億速云 閱讀:219 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)php office轉(zhuǎn)pdf的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

php office轉(zhuǎn)pdf的方法:首先配置“php.ini”,并重啟環(huán)境;然后配置office組件服務(wù);接著在控制臺(tái)根節(jié)點(diǎn)下,找到【wps……】,右鍵設(shè)置屬性;最后編寫程序?qū)崿F(xiàn)轉(zhuǎn)換即可。

php office轉(zhuǎn)pdf的方法

一、配置環(huán)境

(1)配置php.ini

添加:extension=php_com_dotnet.dll

com.allow_dcom = true  // 去掉號(hào),改為true

重啟環(huán)境

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

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

(3)配置office組件服務(wù)

按 win+R 快捷鍵進(jìn)入運(yùn)行菜單,輸入 Dcomcnfg

找到:     [組件服務(wù)] —— [計(jì)算機(jī)]—— [我的電腦] —— [DCOM配置] ——【wps……】或[Microsoft Wrord 97-2003文檔]

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

按 win+R 快捷鍵進(jìn)入運(yùn)行菜單

輸入:mmc -32

[文件]——[添加或刪除管理單元]——[組件服務(wù)](從可用管理單元,添加到所選管理單元,點(diǎn)擊:確定)

添加完以后,在控制臺(tái)根節(jié)點(diǎn)下,找到【wps……】或[Microsoft Wrord 97-2003文檔],右鍵設(shè)置屬性,設(shè)置“標(biāo)識(shí)”為:交互式用戶(還有安全里面的設(shè)置 可以看其他文章的設(shè)置)

php office轉(zhuǎn)pdf的方法

php office轉(zhuǎn)pdf的方法

注:我開始 選擇交互式用戶  : 會(huì)出現(xiàn) 我登錄遠(yuǎn)程服務(wù)器一切正常,如果退出遠(yuǎn)程服務(wù)器實(shí)例化組件就報(bào)錯(cuò),最后選擇了 下列用戶,填寫了管理員用戶和密碼才正??捎?

二、編寫程序

<?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('read_pdf')) {        header('Content-type: application/pdf');        header('filename='.$filenamepdf);        readfile($filenamepdf);
        read_pdf('Python_study.pdf');
    }    echo 'ok';
}?>
if(!function_exists('read_pdf')) {  function read_pdf($file) {    if(strtolower(substr(strrchr($file,'.'),1)) != 'pdf') {      echo '文件格式不對.';      return;
    }    if(!file_exists($file)) {      echo '文件不存在';      return;
    }    header('Content-type: application/pdf');    header('filename='.$file);    readfile($file);
  }
}

關(guān)于php office轉(zhuǎn)pdf的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI