怎样用php读取word2007,然后显示到网页上呢
如题
------解决方案--------------------
<?php
$word = new COM("word.application") or die ("Could not initialise MS Word object.");
$word->Documents->Open(realpath("Sample.doc"));
// Extract content.
$content = (string) $word->ActiveDocument->Content;
echo $content;
$word->ActiveDocument->Close(false);
$word->Quit();
$word = null;
unset($word);
?>
------解决方案--------------------不是好像,就是不行的!
------解决方案--------------------用FlexPaper +swftools 就可以,我最近在搞这个
------解决方案--------------------2007为个么不行啊,
------解决方案--------------------用1楼的方法,就可以,但服务器上要
装OFFICE2007或以上版本,又或者
装OFFICE2003+微软的2007兼容包,就可以了,我两种方法都能成功读取DOCX!
------解决方案--------------------用phpword
------解决方案-------------------- 用phpexcel类不行吗?