本篇文章給大家分享的是有關(guān)使用PHP怎么對html與word進行轉(zhuǎn)換,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
我們擁有10多年網(wǎng)頁設(shè)計和網(wǎng)站建設(shè)經(jīng)驗,從網(wǎng)站策劃到網(wǎng)站制作,我們的網(wǎng)頁設(shè)計師為您提供的解決方案。為企業(yè)提供網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序開發(fā)、移動網(wǎng)站建設(shè)、H5開發(fā)、等業(yè)務(wù)。無論您有什么樣的網(wǎng)站設(shè)計或者設(shè)計方案要求,我們都將富于創(chuàng)造性的提供專業(yè)設(shè)計服務(wù)并滿足您的需求。<?php class word{ function start(){ ob_start(); echo '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">'; } function save($path) { echo "</html>"; $data = ob_get_contents(); } function wirtefile($fn,$data){ $fp=fopen($fp,$data); fwrite($fp,$data); } } $html=' <table width=600 cellpadding="6" cellspacing="1" > <tr > <td >姓名</td> <td >性別</td> <td >年齡</td> <td >愛好</td> <td >備注</td> </tr> <tr > <td >張三</td> <td >男</td> <td >32</td> <td >足球</td> <td >無</td> </tr> <tr > <td > 李四 </td> <td >男</td><td >43</td><td >籃球</td><td >無</td> </tr> </table> '; //批量生成 //for($i=1;$i<3;$i++){ $word = new word(); $word->start(); $wordname='個人測試php生成word.doc'; echo $html; $word->save($wordname); header('Content-type:application/word'); header('Content-Disposition: attachment; filename='.$wordname.''); //readfile($wordname); ob_flush();//每次執(zhí)行前刷新緩存 flush(); //} ?>
下面給大家分享一段代碼php實現(xiàn)word轉(zhuǎn)html的方法
要想完美解決,office轉(zhuǎn)pdf或者html,好還是用windows office軟件,libreoffice不能完美轉(zhuǎn)換,wps沒有api。
先確認com模塊是不是開啟,phpinfo里面如果有com_dotnet模塊,說明已開啟,如果沒有,修改php.ini,
代碼如下:
com.allow_dcom = true
前面的注釋去掉,重啟就OK了,php官方網(wǎng)站說,php5.4.5之前,com模塊是內(nèi)置的,其實也不一定全是,官網(wǎng)下的php 5.3.39,com模塊就沒有內(nèi)置。
如果不是內(nèi)置模塊的話,php.ini加上,前提你的ext文件夾下,有該擴展
代碼如下:
extension=php_com_dotnet.dll
然后重啟就OK了
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');
以上就是使用PHP怎么對html與word進行轉(zhuǎn)換,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
新聞標題:使用PHP怎么對html與word進行轉(zhuǎn)換-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://jinyejixie.com/article14/dpdsde.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、標簽優(yōu)化、搜索引擎優(yōu)化、外貿(mào)網(wǎng)站建設(shè)、服務(wù)器托管、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容