PHP perfectly generates word documents and can add html elements

jacklove
Release: 2023-03-27 10:26:02
Original
2734 people have browsed it

PHP generating word documents can often be seen in learning. This article will introduce a method.

There are many ways to generate word documents with PHP on the Internet, some are generated by calling COM components, some are generated by installing PHP extensions, and some are generated by referencing third-party libraries, such as phpword. The following are the two simplest methods. There is no need to install anything else. As long as you install the PHP environment, you can generate it directly.

* @desc Method 1. Generate word document

* @param $content
 * @param string $fileName
 */function createWord($content='',$fileName='new_file.doc'){    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;;
    }
    $fp=fopen($fileName,&#39;wb&#39;);
    fwrite($fp,$content);
    fclose($fp);
}
$str = &#39;<h1 style="color:red;">我是h1</h1><h2>我是h2</h2>&#39;;
createWord($str);/**
Copy after login

* @desc Method 2, generate word document and download

* @param $content
 * @param string $fileName
 */function downloadWord($content, $fileName=&#39;new_file.doc&#39;){    if(empty($content)){        return;
    }
    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 charset="UTF-8" /></head>&#39;;    echo $html . &#39;<body>&#39;.$content .&#39;</body></html>&#39;;
}
$str = &#39;<h4>表头:</h4>
<table border="1">
<tr>
  <th>姓名</th>
  <th>电话</th>
  <th>电话</th>
</tr>
<tr>
  <td>Bill Gates</td>
  <td>555 77 854</td>
  <td>555 77 855</td>
</tr>
</table>&#39;;
downloadWord($str, &#39;abc.doc&#39;);
Copy after login

Rendering after running

PHP generates word document

PHP perfectly generates word documents and can add html elements

PHP generates word documents

PHP perfectly generates word documents and can add html elements

This article introduces how to generate word documents in PHP, and more related content Please pay attention to php Chinese website.

Related recommendations:

ThinkPhp caching principle and detailed explanation

Discuz!X/database DB:: function operation method

Detailed explanation of String class in ThinkPHP framework

The above is the detailed content of PHP perfectly generates word documents and can add html elements. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template