Home  >  Article  >  Backend Development  >  Sharing how to read word documents with PHP

Sharing how to read word documents with PHP

小云云
小云云Original
2018-01-30 14:10:194748browse

This article mainly introduces the method of reading word documents in PHP. It analyzes in more detail the opening of COM components, property settings and the operating skills of opening and reading word documents based on COM components. Friends in need can refer to it. I hope it can help. to everyone.

There may be problems with reading word documents during the development process of php. Here you can use the com component to complete this operation

1. First open the COM of php.ini , the operation is as follows

1.


extension=php_com_dotnet.dll

2.


com.allow_dcom = true

2. After opening it, you can try the following operations

1. Create an index pointing to the new COM component


$word = new COM("word.application") or die("Can't start Word!");

2. Display the version number of Word currently being used


echo "Loading Word, v. {$word->Version}";

3. Set its visibility to 0 (false). If you want to make it Open at the front end, use 1 (true)


$word->Visible = 0;

4. Open a document


$word->Documents->open(dirname(__FILE__)."/1.doc");

5. Read Get the document content


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

6. Output the document content


##

echo $test;

Related recommendations:

How should php read the contents of word and Excel files

How should PHP read the data in the WORD table

How should php read Get the contents of word and Excel files

The above is the detailed content of Sharing how to read word documents with PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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