Code for reading and writing Word documents in PHP

Source: Internet
Author: User


Copy codeThe Code is as follows:
<?
// Create an index pointing to the new COM Component
$ Word = new COM ("word. application") or die ("Can't start Word !");
// Display the version number of the Word currently in use
// Echo "Loading Word, v. {$ word-> Version} <br> ";
// Set its visibility to 0 (false). If you want to enable it at the frontend, use 1 (true)
// To open the application in the forefront, use 1 (true)
// $ Word-> Visible = 0;

// Play? One document
$ Word-> Documents-> OPen ("d: \ myweb \ muban.doc ");
// Read the document content

$ Test = $ word-> ActiveDocument-> content-> Text;

Echo $ test;
Echo "<br> ";
// Replace the variable to be changed in the document
$ Test = str_replace ("<{Variable}>", "this is a variable", $ test );
Echo $ test;
$ Word-> Documents-> Add ();
// Add text to the new document
$ Word-> Selection-> TypeText ("$ test ");
// Save the document in the directory
$ Word-> Documents [1]-> SaveAs ("d:/myweb/comtest.doc ");
// Close the connection with COM components
$ Word-> Quit ();
?>

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.