php で HTML を Word に変換する方法: 1. mnt メディアを介して Word を生成、コードは [composer require cshaptx4869/html2word] です; 2. HTML ファイルを Word に直接書き込み、画像を Base64 形式に変換します。
php を使用して html を word に変換する方法:
1. を介して word
を生成します。 mntcomposer 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'));
関連学習の推奨事項:Getting PHPプログラミングから始めてマスターするために
以上がPHPでHTMLをWordに変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。