PHP perfectly generates Word documents that can be added to HTML elements

Source: Internet
Author: User
The Word document generated by PHP can be seen frequently in learning, and this article will introduce a method.

PHP generates Word documents, there are many methods on the web, there are calls to COM components generated by the installation of PHP extensions generated, there are also references to third-party class libraries, such as Phpword generated. The following are the most concise two methods, no need to install the other, as long as you install the PHP environment can be directly generated.

<?phpheader ("Content-type:text/html;charset=utf-8");/**
* @desc method One, generate Word documents

* @param $content * @param string $fileName */function createword ($content = ', $fileName = ' New_file.doc ') {    if (empty ( $content)) {        return;    }    $content = ' 

* @desc Method II, Generate Word documents and download

* @param $content * @param string $fileName */function Downloadword ($content, $fileName = ' New_file.doc ') {if (Empty ($cont    ENT)) {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 = ' 

After running the

PHP generates Word documents

PHP generates Word documents

This article describes how PHP generates Word documents, and more about the PHP Chinese web.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.