php에서 html을 단어로 변환하는 방법: 1. mnt 매체를 통해 단어를 생성합니다. 코드는 [composer require cshaptx4869/html2word]입니다. 2. html 파일을 단어로 직접 작성하고 이미지를 base64 형식으로 변환합니다.
php에서 html을 단어로 변환하는 방법:
1 mnt
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); }
라는 매체를 통해 단어를 생성합니다. html 파일을 단어로 직접 작성하세요
참고: 그림이 있으면 변환하세요. 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을 PHP에서 단어로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!