您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關php office轉pdf的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
php office轉pdf的方法:首先配置“php.ini”,并重啟環境;然后配置office組件服務;接著在控制臺根節點下,找到【wps……】,右鍵設置屬性;最后編寫程序實現轉換即可。
一、配置環境
(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
找到: [組件服務] —— [計算機]—— [我的電腦] —— [DCOM配置] ——【wps……】或[Microsoft Wrord 97-2003文檔]
如果沒找到【wps……】或(Microsoft Wrord 97-2003文檔):
按 win+R 快捷鍵進入運行菜單
輸入: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('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); } }
關于php office轉pdf的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。