如何在php中读取word的table和图片
$word = new COM("word.application") or die("Unable to instanciate Word");
$word->Visible = 0;//打开一个文档
$word->Documents->OPen("e:/word/11.doc");
//读取word的table和图片
-------------------------------------------------------------------------------------------------- 这块代码怎么写 --------------------------------------------------------------------------------------------------
//关闭 word
$word->Quit();
header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header ("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");
header('Content-type: application/rtf');
header('Content-Disposition: attachment;filename=paper.rtf');
header ("Content-Description: PHP/INTERBASE Generated Data" );