Php / python bir dizeye pdf, ppt, xl, doc dosyaları içeriğini okumak için nasıl [kapalı]

3 Cevap php

Pls bana herhangi bir dahili komut veya paket önermek?

3 Cevap

iyi, net bir şey bulmak çok zor olmamalı. İşte Python için bir denir bulunuyor pyPDF. Bu tür modüller için PyPi da kontrol edin. Doc, ppt, xls dosyalarını okumak için, tek yönlü kullanmaktır COM.

"Ikili" ya da asıl metni olarak içerik?

To read the file as "binary" in php: http://php.net/manual/en/function.file.php

In python: http://docs.python.org/tutorial/inputoutput.html#reading-and-writing-files

Actually reading the contents of the file is a lot more difficult and requires additonall libraries. For instance have a look at this question on SO (Python): http://stackoverflow.com/questions/685533/python-convert-microsoft-office-docs-to-plain-text-on-linux

Bu deneyin:

$data = fopen('myfile.png', 'rb'); // read in binary mode.

if ($data) {
  header('Content-Type: image/png');
  fpassthru($data);
}

Sen content-type buna göre değiştirmek gerekir.