PHP ile doc dosyalarını okumak için Office Word Kullanımı

0 Cevap php

I word.application bir dosyayı okumak için PHP kullanmaya çalışıyorum. Bu sadece dosyayı açmak olmaz. Bu doğru sürümünü yankılanan oluyor.

$w = new COM("word.application") or die("Is office installed?");
echo 'Loaded Word, version ' . $w->Version . '<br>'; 
$w->Visible = false;

$w->Documents->Open(realpath('test.docx'));

$content = (string) $w->ActiveDocument->Content;

echo $content;

$w->Quit();
$w->Release();
$w = null;

Ben hata alıyorum:

Uncaught exception 'com_exception' with message 'Source: Microsoft Word
Description: This command is not available because no document is open.' 

Bu izin sorunu bir tür gibi hissediyor. Ben realpath kullanarak ve yardım etmedi yanında test.docx yolunu koymaya çalıştı. Ayrıca benim C sürücüsünün kök koymak için çalıştı. Windows 7 Professional ve Microsoft Office 2007 kullanıyorum.

0 Cevap