In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly introduces "how to solve the problem of php reading word Chinese garbled code". In daily operation, I believe many people have doubts about how to solve the problem of php reading word Chinese garbled code. Xiaobian consulted all kinds of data and sorted out simple and easy-to-use operation methods. I hope it will be helpful to answer the doubt of "how to solve the problem of php reading word Chinese garbled code". Next, please follow the editor to study!
Php read word Chinese garbled solutions: 1, check the php version; 2, modify the php.ini and restart the server; 3, through the "iconv ('GB2312',' UTF-8', $test);" to solve the garbled problem in the reading process.
This article operating environment: Windows7 system, PHP7.4 version, Dell G3 computer.
How to solve the problem of php reading Chinese garbled code in word?
How to solve the garbled code in the process of reading word file by php?
First, confirm the php version, preferably higher than 5.6,
2. Enable PHP Com extension
/ / put the following two lines of code into the php.ini, and restart the server / / turn on what is included in the extended extension=php_com_dotnet.dll// COM extension, just remove the previous one and com.allow_dcom = true
3. The code is as follows:
Public function readWord ($url) {$word = new COM ("word.application") or die ("Unable to instantiate Word"); / / Open word,doc or docx with path URL can either $word- > Documents- > OPen ($url); / / read content $test= $word- > ActiveDocument- > content- > Text; / / count words / / $num = strlen ($test) / / solve the problem of garbled code during reading $content= iconv ('GB2312',' UTF-8', $test); / / check the version / / $word_wersion = $word- > Version; / / whether to open the file, 0 means no, 1 means $word- > Visible = 0; / / close the word handle $word- > Quit () / / release object $word = null; return [/ / 'num' = > $num / 2, / /' word_wersion' = > $wordWersion, 'content' = > $content];}
Note:
Question 1:
One thing to pay attention to in the file url is that the URL you pass in must not be an absolute address, such as D:\ WWW\, you must have the routing address of your own frame, such as localhost/. Otherwise, an error will occur because the word content is read with an absolute address and can only be read once, and then the word is locked and cannot be read.
Question 2:
Using this method solves the problem of reading garbled Word content, but it is limited to reading plain text Word, and there is no style. If you need to get the content of an Word document, including styles, pictures, fonts, and so on, this approach is not appropriate.
The way we deal with it is to use Aspos. Use Java to do an underlying service, which converts all uploaded Word documents into html format. If there are pictures in the document, the converted images will be extracted to the same level directory and left in the generated html file.
Label. In this way, the fonts and styles in the Word document become HTML code, preserving the style of the original document to the maximum extent.
At this point, the study on "how to solve the problem of php reading word Chinese garbled code" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.