溫馨提示×

溫馨提示×

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

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

php怎么將word轉(zhuǎn)換為html格式

發(fā)布時間:2021-07-27 10:24:22 來源:億速云 閱讀:317 作者:chen 欄目:編程語言

本篇內(nèi)容主要講解“php怎么將word轉(zhuǎn)換為html格式”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php怎么將word轉(zhuǎn)換為html格式”吧!

PHP將上傳word文件,轉(zhuǎn)化為Html格式,(多種轉(zhuǎn)換方式)

1、通過PHPOffice(推薦)

1:    composer require phpoffice/phpword   
                                           /*  通過composer安裝 PHPOffice
                                                需要科學(xué)上網(wǎng)
                                               或者用中國鏡像:https://www.phpcomposer.com/
                                            */  
 2:  安裝成功可看到 vendor文件夾
 3: 使用方法 :
    require 'vendor/autoload.php';
    $phpWord = \PhpOffice\PhpWord\IOFactory::load('./4.docx');
    $xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, "HTML");
    $xmlWriter ->save('./ceshi.htm');
 
   4:官方
         /*
           官方案例:https://phpword.readthedocs.io/en/latest/general.html
           github: https://github.com/PHPOffice/PhpSpreadsheet
          */

2、通過python

from win32com import client as wc
import sys
def saveHtm():
    # print(wordPath)
    # print(htmPath)
    wordPath='E:/1.doc'
    htmPath='E:/1.htm'
    word = wc.Dispatch('Word.Application')
    print(word)
    doc = word.Documents.Open('E:/1.doc')
    doc.SaveAs("E:/1.htm", 8)               //轉(zhuǎn)化為htm格式
    doc.SvaeAs("E:/1.fpt",17)               
    doc.Close()
    word.Quit()
if __name__ == '__main__':
saveHtm()

3、同時Offic API直接在網(wǎng)頁顯示word文檔。

     src="http://view.officeapps.live.com/op/view.aspx?src=公網(wǎng)上能訪問的word文檔地址" >
例
src="http://view.officeapps.live.com/op/view.aspxsrc=newteach.pbworks.com%2Ff%2Fele%2Bnewsletter.docx"

4、通過com組件

需要所在宿主機(jī),有offic的環(huán)境,Linxu下不能使用
(不推薦)

到此,相信大家對“php怎么將word轉(zhuǎn)換為html格式”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

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

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

AI