搜索文件的解决方案(在 lamp 中)
我有一个用户上传文件的网站(PDF、WORD、POWER POINT ....) 他们希望能够在文件中搜索单词, 我该怎么做 ?
i have site that the user upload files (PDF,WORD,POWER POINT ....)
and they want to have the ability to search word in the files,
how can i do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须在 PHP 中使用模块/包/类,它们允许您阅读 .PDF、.DOC、.PPT 等格式。 然后,解析文档并为您遇到的单词以及其他相关信息创建数据库条目。 稍后,您可以轮询数据库以获取搜索结果。
You will have to use modules/packages/classes in PHP which allow you to read such formats as .PDF, .DOC, .PPT. Then, parse through the document and create database entries for words that you encounter, along with other relevant information. Later, you can poll the database for search results.
我们使用 mnogosearch 来完成您正在做的事情。
we use mnogosearch for what you are doing.