Sharing how to read word documents with PHP

小云云
Release: 2023-03-19 18:56:01
Original
4744 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 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
Copy after login

2.


com.allow_dcom = true
Copy after login

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!");
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 to make it Open at the front end, 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 Get the document content


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

6. Output the document content


##

echo $test;
Copy after login
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!

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!