Examples of how to convert htmlword in PHP and php_PHP

Source: Internet
Author: User
Examples illustrate how to convert htmlword in PHP and php. The example explains how to convert htmlword in PHP. the following section of php code describes how php transfers html to word. the specific content is as follows: this is tested, this method provides examples to illustrate how html word is exchanged in PHP.

The following code describes how php transfers html to word. the specific content is as follows:

This is tested. this method is not good. The html page code should be written in php, but it can be run and viewed by the program.

<? Php class word {function start () {ob_start (); echo'';} Function save ($ path) {echo""; $ Data = ob_get_contents ();} function wirtefile ($ fn, $ data) {$ fp = fopen ($ fp, $ data); fwrite ($ fp, $ data) ;}}$ html ='
 
Name Gender Age Hobbies Remarks
Zhang San Male 32 Football None
Li Si Male 43 Basketball None
'; // Batch generation // for ($ I = 1; $ I <3; $ I ++) {$ word = new word (); $ word-> start({{{wordname}'personal test phpgenerate Word.doc '; echo $ html; $ word-> save ($ wordname); header ('content-type: application/word '); header ('content-Disposition: attachment; filename = '. $ wordname. ''); // readfile ($ wordname); ob_flush (); // refresh the cache flush () before each execution; //}?>

Below is a piece of code for php to convert word to html.

To solve this problem perfectly, we 'd better use windows office software to convert office to pdf or html. libreoffice cannot be converted perfectly, and wps has no APIs.

Check whether the com MODULE is enabled. if there is a com_dotnet module in phpinfo, it indicates that it is enabled. if not, modify php. ini,
The code is as follows:

Com. allow_dcom = true

The comment above is removed, and the restart will be OK. the Official php website said that the com MODULE was built in before php5.4.5, but not necessarily all. the official website's php 5.3.39, the com module is not built in.
If it is not a built-in module, add it to php. ini, provided that the extension is available in your ext folder.

The code is as follows:

extension=php_com_dotnet.dll

Then restart the instance.

function word2html($wordname,$htmlname){$word = new COM("word.application") or die("Unable to instanciate Word");$word->Visible = 1;$word->Documents->Open($wordname);$word->Documents[1]->SaveAs($htmlname,8);$word->Quit();$word = null;unset($word);}word2html('D:/www/test/6.docx','D:/www/test/6.html');

Note:

1. the converted html is messy to view the source code.

2. winword.exe will be used in the conversion process

3. if the page is being loaded, rename the document and re-convert it.

Articles you may be interested in:
  • Php implements the method of converting uploaded word files to html
  • Use of PHP functions related to HTML and filtering links in WordPress
  • Php to convert word to html

The following section of php code describes how php transfers html to word. the specific content is as follows: this is tested...

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.