php將word轉換為html格式代碼分析
PHP將上傳word文件,轉化為Html格式,(多種轉換方式)
1、通過PHPOffice1: composer require phpoffice/phpword
/* 通過composer安裝 PHPOffice需要科學上網或者用中國鏡像:https://www.phpcomposer.com/*/
2: 安裝成功可看到 vendor文件夾
3: 使用方法 :
require ’vendor/autoload.php’;$phpWord = PhpOfficePhpWordIOFactory::load(’./4.docx’);$xmlWriter = PhpOfficePhpWordIOFactory::createWriter($phpWord, 'HTML');$xmlWriter ->save(’./ceshi.htm’);
4:官方
/*官方案例:https://phpword.readthedocs.io/en/latest/general.htmlgithub: https://github.com/PHPOffice/PhpSpreadsheet*/
2、通過pythonfrom win32com import client as wcimport sysdef 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) //轉化為htm格式 doc.SvaeAs('E:/1.fpt',17) doc.Close() word.Quit()if __name__ == ’__main__’:saveHtm()3、同時Offic API直接在網頁顯示word文檔。
src='http://view.officeapps.live.com/op/view.aspx?src=公網上能訪問的word文檔地址' >例src='http://view.officeapps.live.com/op/view.aspxsrc=newteach.pbworks.com%2Ff%2Fele%2Bnewsletter.docx'
4、通過com組件需要所在宿主機,有offic的環境,Linxu下不能使用
實例擴展:
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><meta http-equiv='Content-Type' content='text/html; charset=gb2312' /><title>接收上傳文件</title><?php $conn = @new COM('ADODB.Connection'); $connstr = 'DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=' . realpath('person.mdb'); $conn->Open($connstr); $uploaddir = ’uploads/’; if(!is_dir($uploaddir)){ mkdir($uploaddir); } $filename =$_FILES[’filename’][’name’]; $filename =substr($_FILES[’filename’]['name'],0,strpos($_FILES[’filename’]['name'],'.')); echo $filename; echo '<br>'; $uploadfile = $uploaddir.$filename.substr($_FILES[’filename’]['name'],strpos($_FILES[’filename’]['name'],'.')); //目錄名.文件名.后綴名 echo $uploadfile; echo '<br>'; $temploadfile = $_FILES[’filename’][’tmp_name’]; echo $temploadfile; echo '<br>'; move_uploaded_file($temploadfile , $uploadfile); //移動文件 $path = $_SERVER[’SCRIPT_FILENAME’]; $filepath = $_SERVER['PHP_SELF']; $path = substr($path,0,strpos($path,$filepath)); echo $path; echo '<br>'; echo $filepath; $htmlpath = $path.'/shiyan4/'.$uploadfile; echo '<br>'; echo $htmlpath; word2html($htmlpath); //$query =@mysql_query( 'Insert into $username(fname,file)values(’$filename’,’$uploadfile’)')or die('error');?><?php //http://tieba.baidu.com/f?kz=13975389 function word2html($wfilepath) { $word=new COM('Word.Application') or die('無法打開 MS Word'); $word->visible = 1 ; $word->Documents->Open($wfilepath)or die('無法打開這個文件'); $htmlpath=substr($wfilepath,0,-4); $word->ActiveDocument->SaveAs($htmlpath,8); $word->quit(0); } print( 'Word轉html完成!' );?></head><body></body></html>
以上就是php將word轉換為html格式代碼分析的詳細內容,更多關于php將word轉換為html格式的方法的資料請關注好吧啦網其它相關文章!
相關文章: