Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting PHP to read .doc files on Linux

Tags:

database

php

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 convert .doc files to rtf, pdf or some other 'open' format that is easy to read?

Note, I am not interested in .docx files.

like image 689
Conor Avatar asked Sep 18 '08 05:09

Conor


1 Answers

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)"
like image 84
Ivan Krechetov Avatar answered Oct 09 '22 07:10

Ivan Krechetov