如何在 PHP 中阅读 Word、Excell 和 PDF 文档?
我需要能够在 PHP 中读取许多不同文件类型的文本,包括 .doc、.docx、excel 和 PDF 文件。我在网上找到了一些需要安装多个软件包的方法,但我想知道是否有更好的方法来做到这一点?
I need to be able to read the text of many different file types in PHP, including .doc, .docx, excel, and PDF files. I found a few methods online that require installing multiple packages but I was wondering if there was a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
无论你用什么方式挥动,都不可能一石激起千层浪。
Word 主题:
在 PHP 中读取/写入 MS Word 文件
Excel 线程:
用 PHP 读取 Excel 文件
PDF 线程:
使用 php 阅读 pdf 文件
No matter which way you swing it, there is no way to kill all these birds with one stone.
Word Thread:
Reading/Writing a MS Word file in PHP
Excel Thread:
Reading an Excel file in PHP
PDF Thread:
Read pdf files with php
Office 2007 非常简单,只需解压它们并读取 xml 文件即可,旧版本的 Office 和 pdf 需要额外的软件包。
office 2007 is very easy, just need to unzip them and read the xml files, older versions of office and pdf will need extra packages.
我认为 PHP 没有原生支持读取文档。安装这些软件包是唯一的选择。 :-)
I don't think there is native support for reading documents with PHP. Installing these packages is the only choice. :-)
也许这个 URL 可以帮助你:
https://github.com/PHPOffice
其中有:
-PhPWord,
-PhpSpreadsheet(而不是 PhPExcel)
...
maybe this URL can help you:
https://github.com/PHPOffice
where have:
-PhPWord,
-PhpSpreadsheet(instead of PhPExcel)
...