>  기사  >  백엔드 개발  >  HTML을 PHP에서 단어로 변환하는 방법은 무엇입니까?

HTML을 PHP에서 단어로 변환하는 방법은 무엇입니까?

coldplay.xixi
coldplay.xixi원래의
2020-07-11 15:22:264712검색

php에서 html을 단어로 변환하는 방법: 1. mnt 매체를 통해 단어를 생성합니다. 코드는 [composer require cshaptx4869/html2word]입니다. 2. html 파일을 단어로 직접 작성하고 이미지를 base64 형식으로 변환합니다.

HTML을 PHP에서 단어로 변환하는 방법은 무엇입니까?

php에서 html을 단어로 변환하는 방법:

1 mnt

composer require cshaptx4869/html2word
<?php
/**
 * @desc 方法一、生成word文档
 * @param $content
 * @param string $fileName
 */
function createWord($content = &#39;&#39;, $fileName = &#39;&#39;)
{
    if (empty($content)) {
        return;
    }
    $content=&#39;<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" />&#39;.$content.&#39;</html>&#39;;
    if (empty($fileName)) {
        $fileName = date(&#39;YmdHis&#39;).&#39;.doc&#39;;
    }
    file_put_contents($fileName, $content);
}

라는 매체를 통해 단어를 생성합니다. html 파일을 단어로 직접 작성하세요

참고: 그림이 있으면 변환하세요. base64 형식으로 변환

<?php/**
 * @desc 方法二、生成word文档并下载
 * @param $content
 * @param string $fileName
 */
function downloadWord($content, $fileName=&#39;&#39;){
    if(empty($content)){
        return;
    }
    if (empty($fileName)) {
        $fileName = date(&#39;YmdHis&#39;).&#39;.doc&#39;;
    }    // 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 = &#39;<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">&#39;;
    $html .= &#39;<head><meta http-equiv="Content-Type" content="text/html;charset="UTF-8" /></head>&#39;;
    echo $html . &#39;<body>&#39;.$content .&#39;</body></html>&#39;;
}
createWord(file_get_contents(&#39;html2word.html&#39;));
downloadWord(file_get_contents(&#39;html2word.html&#39;));

관련 학습 권장 사항: 초보부터 마스터까지 PHP 프로그래밍

위 내용은 HTML을 PHP에서 단어로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.