91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何使用php實現html轉換word

發布時間:2020-07-16 13:48:45 來源:億速云 閱讀:604 作者:Leah 欄目:編程語言

如何使用php實現html轉換word?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

php實現html轉換word的方法:1、通過mnt介質,生成word,代碼為【composer require cshaptx4869/html2word】;2、html文件直接寫入word,且將圖片轉為base64格式。

php實現html轉換word的方法:

1、通過mnt這個介質,生成word

composer require cshaptx4869/html2word
<?php
/**
 * @desc 方法一、生成word文檔
 * @param $content
 * @param string $fileName
 */
function createWord($content = '', $fileName = '')
{
    if (empty($content)) {
        return;
    }
    $content='<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">
            <meta charset="UTF-8" />'.$content.'</html>';
    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 = '<html xmlns:v="urn:schemas-microsoft-com:vml"
         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 .= '<head><meta http-equiv="Content-Type" content="text/html;charset="UTF-8" /></head>';
    echo $html . '<body>'.$content .'</body></html>';
}
createWord(file_get_contents('html2word.html'));
downloadWord(file_get_contents('html2word.html'));


關于如何使用php實現html轉換word問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家口市| 克什克腾旗| 西乌珠穆沁旗| 太和县| 威信县| 千阳县| 桂阳县| 涟源市| 丰城市| 繁峙县| 华坪县| 崇礼县| 新丰县| 喀喇| 丹寨县| 鄂托克旗| 黄冈市| 南木林县| 如皋市| 衡山县| 都匀市| 探索| 基隆市| 天祝| 聂拉木县| 博乐市| 右玉县| 沿河| 阿克陶县| 军事| 萨嘎县| 封开县| 沁阳市| 新蔡县| 温州市| 大同县| 彭州市| 长沙县| 长春市| 峨眉山市| 铜鼓县|