How to read word document in PHP

墨辰丷
Release: 2023-03-26 17:40:02
Original
9340 people have browsed it

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
Copy after login

2.

com.allow_dcom = true
Copy after login

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!");
Copy after login

2. Display the version number of Word currently being used

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

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

$word->Visible = 0;
Copy after login

4 , Open a document

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

5, Read the document content

$test= $word->ActiveDocument->content->Text;
Copy after login

6, Output document content

echo $test;
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!