日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php html转换成word,php如何实现html转换word?

發布時間:2024/3/12 php 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php html转换成word,php如何实现html转换word? 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

php如何實現html轉換word?2020-07-11 12:43:38

php實現html轉換word的方法:

1、通過mnt介質,生成word,代碼為【composer require cshaptx4869/html2word】;

2、html文件直接寫入word,且將圖片轉為base64格式。

php實現html轉換word的方法:

1、通過mnt這個介質,生成wordcomposer?require?cshaptx4869/html2word

/**

*?@desc?方法一、生成word文檔

*?@param?$content

*?@param?string?$fileName

*/

function?createWord($content?=?'',?$fileName?=?'')

{

if?(empty($content))?{

return;

}

$content='

xmlns:o="urn:schemas-microsoft-com:office:office"

xmlns:w="urn:schemas-microsoft-com:office:word"

xmlns="http://www.w3.org/TR/REC-html40">

'.$content.'';

if?(empty($fileName))?{

$fileName?=?date('YmdHis').'.doc';

}

file_put_contents($fileName,?$content);

}

2、html文件直接寫入word

注意:如果有圖片的話,轉為base64格式<?php /**

*?@desc?方法二、生成word文檔并下載

*?@param?$content

*?@param?string?$fileName

*/

function?downloadWord($content,?$fileName=''){

if(empty($content)){

return;

}

if?(empty($fileName))?{

$fileName?=?date('YmdHis').'.doc';

}????//?header("location:xxx.doc");

header("Cache-Control:?no-cache,?must-revalidate");

header("Pragma:?no-cache");

header("Content-Type:?application/octet-stream");

header("Content-Disposition:?attachment;?filename={$fileName}");

$html?=?'

xmlns:o="urn:schemas-microsoft-com:office:office"

xmlns:w="urn:schemas-microsoft-com:office:word"

xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"

xmlns="http://www.w3.org/TR/REC-html40">';

$html?.=?'

';

echo?$html?.?'

'.$content?.'';

}

createWord(file_get_contents('html2word.html'));

downloadWord(file_get_contents('html2word.html'));

相關學習推薦:PHP編程從入門到精通

總結

以上是生活随笔為你收集整理的php html转换成word,php如何实现html转换word?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。