欧美亚洲中文,在线国自产视频,欧洲一区在线观看视频,亚洲综合中文字幕在线观看

      1. <dfn id="rfwes"></dfn>
          <object id="rfwes"></object>
        1. 站長資訊網(wǎng)
          最全最豐富的資訊網(wǎng)站

          php如何實(shí)現(xiàn)html轉(zhuǎn)換word?

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

          php如何實(shí)現(xiàn)html轉(zhuǎn)換word?

          php實(shí)現(xiàn)html轉(zhuǎn)換word的方法:

          1、通過mnt這個(gè)介質(zhì),生成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

          注意:如果有圖片的話,轉(zhuǎn)為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'));

          相關(guān)學(xué)習(xí)推薦:PHP編程從入門到精通

          贊(0)
          分享到: 更多 (0)
          網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)