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
Conor, I'd suggest to look at OpenOffice command line interface / calling macros. It can convert many file formats to many others. Then you can pick something much more parse-able than MS doc.
For instance, to convert to PDF, a command line is:
/usr/lib/ooo-2.0/program/soffice.bin -norestore -nofirststart -nologo -headless -invisible "macro:///Standard.Module1.SaveAsPDF(demo.doc)"
It's not PHP, but there is a doc2rtf utility out there that you can use. From there you can just open the RTF file as a text document, write some string replacement routines to remove the RTF formatting codes, and have a glob of text suitable for indexing.
Alternately, you can get OpenOffice and open the MS Word documents and just File > Save As > RTF.