Home  >  Article  >  Backend Development  >  How to read word document in PHP

How to read word document in PHP

墨辰丷
墨辰丷Original
2018-05-18 16:38:049299browse

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 the following

The details are as follows:

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

一, 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 a pointer to a new COM Component index

$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 it to open at the front, use 1 (true)

$word->Visible = 0;

4 , Open a document

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

5, Read the document content

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

6, Output document content

echo $test;

Related recommendations:

Python reads text content in word

Sharing of how PHP reads word documents

php reads word documents and displays them through baihui.net API_PHP Tutorial

The above is the detailed content of How to read word document in 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