Getting PHP to read .doc files on Linux

后端 未结 8 1366
没有蜡笔的小新
没有蜡笔的小新 2020-12-18 05:41

I\'m trying to read a .doc file into a database so that I can index it\'s contents. Is there an easy way for PHP on Linux to read .doc files? Failing that is it possible to

8条回答
  •  甜味超标
    2020-12-18 06:29

    DOC files are stored in binary format which there hasn't been any purely php written classes in dealing with them.

    RTF files are much easier to parse, being mostly text you can just open them up with fopen and read the contents.

    I would suggest using RTF if you can, as there really is not a sound solution for DOC files yet.

提交回复
热议问题